emis-sapp/components/tpx-textarea/tpx-textarea.vue

44 lines
657 B
Vue
Raw Normal View History

2023-12-10 17:10:09 +00:00
<template>
2024-05-31 10:42:15 +00:00
<u-textarea shape="circle" placeholder-style=""
2023-12-10 17:10:09 +00:00
:modelValue="value" :clearable="true" :placeholder="placeholder"
2024-08-06 06:40:19 +00:00
custom-style="border-radius: 10rpx;padding: 15rpx 20rpx;" height="160"
2024-05-31 10:42:15 +00:00
@change="handleChange"
2023-12-10 17:10:09 +00:00
></u-textarea>
</template>
<script>
export default {
props: {
value: {
default () {
return ''
}
},
2023-12-11 09:44:17 +00:00
placeholder:{
default () {
return ''
}
},
2023-12-10 17:10:09 +00:00
},
data() {
},
created() {
},
onHide() {
},
2024-01-30 03:09:49 +00:00
unmounted() {},
2023-12-10 17:10:09 +00:00
methods: {
handleChange(val){
this.$emit('change', val)
this.$emit('update:value', val)
}
}
}
</script>
<style scoped lang="scss">
</style>