推拿小程序前端代码仓库
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.

29 lines
546 B

  1. <template>
  2. <uv-textarea :value="value" @input="$emit('input', $event)" :placeholder="placeholder" height="175rpx" border="none"
  3. :customStyle="{
  4. backgroundColor: '#F5F5F5',
  5. borderRadius: '6rpx',
  6. }" placeholderStyle="color: '#999999';
  7. fontSize: '28rpx';"></uv-textarea>
  8. </template>
  9. <script>
  10. export default {
  11. props: {
  12. value: {
  13. default: null
  14. },
  15. placeholder: {
  16. type: String,
  17. default: '请输入'
  18. },
  19. },
  20. data() {
  21. return {}
  22. },
  23. methods: {},
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. </style>