props.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import defprops from '../../libs/config/props';
  2. export default {
  3. props: {
  4. // 排列方向
  5. direction: {
  6. type: String,
  7. default: defprops.steps.direction
  8. },
  9. // 设置第几个步骤
  10. current: {
  11. type: [String, Number],
  12. default: defprops.steps.current
  13. },
  14. // 激活状态颜色
  15. activeColor: {
  16. type: String,
  17. default: defprops.steps.activeColor
  18. },
  19. // 未激活状态颜色
  20. inactiveColor: {
  21. type: String,
  22. default: defprops.steps.inactiveColor
  23. },
  24. // 激活状态的图标
  25. activeIcon: {
  26. type: String,
  27. default: defprops.steps.activeIcon
  28. },
  29. // 未激活状态图标
  30. inactiveIcon: {
  31. type: String,
  32. default: defprops.steps.inactiveIcon
  33. },
  34. // 是否显示点类型
  35. dot: {
  36. type: Boolean,
  37. default: defprops.steps.dot
  38. }
  39. }
  40. }