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