1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- 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
- }
- }
- })
|