emis-sapp/components/tpx-textarea/tpx-textarea.vue
2023-12-11 17:44:17 +08:00

43 lines
682 B
Vue

<template>
<u-textarea shape="circle" placeholder-style="color: #0E0708; "
:modelValue="value" :clearable="true" :placeholder="placeholder"
custom-style="border:0;border-radius: 20rpx;background-color: #F6F6F6;padding: 20rpx 30rpx;" height="160"
></u-textarea>
</template>
<script>
export default {
props: {
value: {
default () {
return ''
}
},
placeholder:{
default () {
return ''
}
},
},
data() {
},
created() {
},
onHide() {
},
destroyed() {},
methods: {
handleChange(val){
this.$emit('change', val)
this.$emit('update:value', val)
}
}
}
</script>
<style scoped lang="scss">
</style>