textarea.js 767 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 17:24:32
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/textarea.js
  9. */
  10. export default {
  11. // textarea 组件
  12. textarea: {
  13. value: '',
  14. placeholder: '',
  15. placeholderClass: 'textarea-placeholder',
  16. placeholderStyle: 'color: #c0c4cc',
  17. height: 70,
  18. confirmType: '',
  19. disabled: false,
  20. count: false,
  21. focus: false,
  22. autoHeight: false,
  23. fixed: false,
  24. cursorSpacing: 0,
  25. cursor: '',
  26. showConfirmBar: true,
  27. selectionStart: -1,
  28. selectionEnd: -1,
  29. adjustPosition: true,
  30. disableDefaultPadding: false,
  31. holdKeyboard: false,
  32. maxlength: 140,
  33. border: 'surround',
  34. formatter: null
  35. }
  36. }