props.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. export default {
  2. props: {
  3. // 是否虚线
  4. dashed: {
  5. type: Boolean,
  6. default: uni.$u.props.divider.dashed
  7. },
  8. // 是否细线
  9. hairline: {
  10. type: Boolean,
  11. default: uni.$u.props.divider.hairline
  12. },
  13. // 是否以点替代文字,优先于text字段起作用
  14. dot: {
  15. type: Boolean,
  16. default: uni.$u.props.divider.dot
  17. },
  18. // 内容文本的位置,left-左边,center-中间,right-右边
  19. textPosition: {
  20. type: String,
  21. default: uni.$u.props.divider.textPosition
  22. },
  23. // 文本内容
  24. text: {
  25. type: [String, Number],
  26. default: uni.$u.props.divider.text
  27. },
  28. // 文本大小
  29. textSize: {
  30. type: [String, Number],
  31. default: uni.$u.props.divider.textSize
  32. },
  33. // 文本颜色
  34. textColor: {
  35. type: String,
  36. default: uni.$u.props.divider.textColor
  37. },
  38. // 线条颜色
  39. lineColor: {
  40. type: String,
  41. default: uni.$u.props.divider.lineColor
  42. }
  43. }
  44. }