123456789101112131415161718192021222324252627282930313233343536373839 |
- export default {
- props: {
-
- direction: {
- type: String,
- default: uni.$u.props.steps.direction
- },
-
- current: {
- type: [String, Number],
- default: uni.$u.props.steps.current
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.steps.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.steps.inactiveColor
- },
-
- activeIcon: {
- type: String,
- default: uni.$u.props.steps.activeIcon
- },
-
- inactiveIcon: {
- type: String,
- default: uni.$u.props.steps.inactiveIcon
- },
-
- dot: {
- type: Boolean,
- default: uni.$u.props.steps.dot
- }
- }
- }
|