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