props.js 910 B

1234567891011121314151617181920212223242526272829
  1. export default {
  2. props: {
  3. // 轮播的长度
  4. length: {
  5. type: [String, Number],
  6. default: uni.$u.props.swipterIndicator.length
  7. },
  8. // 当前处于活动状态的轮播的索引
  9. current: {
  10. type: [String, Number],
  11. default: uni.$u.props.swipterIndicator.current
  12. },
  13. // 指示器非激活颜色
  14. indicatorActiveColor: {
  15. type: String,
  16. default: uni.$u.props.swipterIndicator.indicatorActiveColor
  17. },
  18. // 指示器的激活颜色
  19. indicatorInactiveColor: {
  20. type: String,
  21. default: uni.$u.props.swipterIndicator.indicatorInactiveColor
  22. },
  23. // 指示器的形式,line-线型,dot-点型
  24. indicatorStyle: {
  25. type: String,
  26. default: uni.$u.props.swipterIndicator.indicatorStyle
  27. }
  28. }
  29. }