鸿宇研学生前端代码
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.

48 lines
774 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: '#F7F8FA',
  10. padding: '8rpx 16rpx',
  11. borderRadius: '16rpx',
  12. }"
  13. :placeholderStyle="{
  14. color: '#C6C6C6',
  15. fontSize: '32rpx',
  16. }"
  17. :textStyle="{
  18. fontSize: '32rpx',
  19. }"
  20. ></uv-textarea>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. value: {
  26. default: null
  27. },
  28. placeholder: {
  29. type: String,
  30. default: '请输入'
  31. },
  32. height: {
  33. type: String,
  34. default: '230rpx'
  35. },
  36. },
  37. data() {
  38. return {
  39. }
  40. },
  41. methods: {
  42. },
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. </style>