|                                               |  | <template>  <uv-textarea    :value="value"     @input="$emit('input', $event)"     :placeholder="placeholder"    :height="height"    border="none"    :customStyle="{      padding: '0',    }"    :placeholderStyle="{      color: '#999999',      fontSize: '28rpx',    }"    :textStyle="{      fontSize: '28rpx',    }"  ></uv-textarea></template>
<script>	export default {    props: {			value: {				default: null			},      placeholder: {        type: String,				default: '请输入'			},      height: {        type: String,				default: '462rpx'      },    },		data() {      return {      }    },    methods: {    },  }</script>
<style scoped lang="scss"></style>
 |