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

32 lines
568 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. ></uv-textarea>
  7. <!--
  8. :placeholderStyle="{color: '#999999',
  9. fontSize: '28rpx'}" -->
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. value: {
  15. default: null
  16. },
  17. placeholder: {
  18. type: String,
  19. default: '请输入'
  20. },
  21. },
  22. data() {
  23. return {}
  24. },
  25. methods: {},
  26. }
  27. </script>
  28. <style scoped lang="scss">
  29. </style>