This commit is contained in:
张成
2025-10-08 15:10:33 +08:00
commit 2e1cd65b07
161 changed files with 19936 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<template>
<Input :value="value" type="textarea" :rows="4" placeholder="请输入内容" @on-blur="changeInput" />
</template>
<script>
export default {
props: ['value'],
data() {
return {}
},
methods: {
changeInput(e) {
let value = e.currentTarget._value
this.$emit('input', value)
}
}
}
</script>
<style lang="less" scoped>
</style>