props.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import defprops from '../../libs/config/props';
  2. export default {
  3. props: {
  4. // 指示器的整体宽度
  5. indicatorWidth: {
  6. type: [String, Number],
  7. default: defprops.scrollList.indicatorWidth
  8. },
  9. // 滑块的宽度
  10. indicatorBarWidth: {
  11. type: [String, Number],
  12. default: defprops.scrollList.indicatorBarWidth
  13. },
  14. // 是否显示面板指示器
  15. indicator: {
  16. type: Boolean,
  17. default: defprops.scrollList.indicator
  18. },
  19. // 指示器非激活颜色
  20. indicatorColor: {
  21. type: String,
  22. default: defprops.scrollList.indicatorColor
  23. },
  24. // 指示器的激活颜色
  25. indicatorActiveColor: {
  26. type: String,
  27. default: defprops.scrollList.indicatorActiveColor
  28. },
  29. // 指示器样式,可通过bottom,left,right进行定位
  30. indicatorStyle: {
  31. type: [String, Object],
  32. default: defprops.scrollList.indicatorStyle
  33. }
  34. }
  35. }