12345678910111213141516171819202122232425262728293031323334353637383940 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- direction: {
- type: String,
- default: defprops.steps.direction
- },
-
- current: {
- type: [String, Number],
- default: defprops.steps.current
- },
-
- activeColor: {
- type: String,
- default: defprops.steps.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: defprops.steps.inactiveColor
- },
-
- activeIcon: {
- type: String,
- default: defprops.steps.activeIcon
- },
-
- inactiveIcon: {
- type: String,
- default: defprops.steps.inactiveIcon
- },
-
- dot: {
- type: Boolean,
- default: defprops.steps.dot
- }
- }
- }
|