鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
774 B

<template>
<uv-textarea
:value="value"
@input="$emit('input', $event)"
:placeholder="placeholder"
:height="height"
border="none"
:customStyle="{
backgroundColor: '#F7F8FA',
padding: '8rpx 16rpx',
borderRadius: '16rpx',
}"
:placeholderStyle="{
color: '#C6C6C6',
fontSize: '32rpx',
}"
:textStyle="{
fontSize: '32rpx',
}"
></uv-textarea>
</template>
<script>
export default {
props: {
value: {
default: null
},
placeholder: {
type: String,
default: '请输入'
},
height: {
type: String,
default: '230rpx'
},
},
data() {
return {
}
},
methods: {
},
}
</script>
<style scoped lang="scss">
</style>