cell.js 649 B

1234567891011121314151617181920212223242526272829303132333435
  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-23 20:53:09
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/cell.js
  9. */
  10. export default {
  11. // cell组件的props
  12. cell: {
  13. customClass: '',
  14. title: '',
  15. label: '',
  16. value: '',
  17. icon: '',
  18. disabled: false,
  19. border: true,
  20. center: false,
  21. url: '',
  22. linkType: 'navigateTo',
  23. clickable: false,
  24. isLink: false,
  25. required: false,
  26. arrowDirection: '',
  27. iconStyle: {},
  28. rightIconStyle: {},
  29. rightIcon: 'arrow-right',
  30. titleStyle: {},
  31. size: '',
  32. stop: true,
  33. name: ''
  34. }
  35. }