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

40 lines
624 B

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