风险测评小程序前端代码仓库
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.

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