普兆健康管家前端代码仓库
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.

47 lines
738 B

  1. <template>
  2. <uv-textarea
  3. :value="value"
  4. @input="$emit('input', $event)"
  5. :placeholder="placeholder"
  6. :height="height"
  7. border="none"
  8. :customStyle="{
  9. backgroundColor: 'transparent',
  10. padding: 0,
  11. }"
  12. :placeholderStyle="{
  13. color: '#C6C6C6',
  14. fontSize: '32rpx',
  15. }"
  16. :textStyle="{
  17. fontSize: '32rpx',
  18. }"
  19. ></uv-textarea>
  20. </template>
  21. <script>
  22. export default {
  23. props: {
  24. value: {
  25. default: null
  26. },
  27. placeholder: {
  28. type: String,
  29. default: '请输入'
  30. },
  31. height: {
  32. type: String,
  33. default: '230rpx'
  34. },
  35. },
  36. data() {
  37. return {
  38. }
  39. },
  40. methods: {
  41. },
  42. }
  43. </script>
  44. <style scoped lang="scss">
  45. </style>