1234567891011121314151617181920212223242526272829 |
- export default {
- props: {
-
- length: {
- type: [String, Number],
- default: uni.$u.props.swiperIndicator.length
- },
-
- current: {
- type: [String, Number],
- default: uni.$u.props.swiperIndicator.current
- },
-
- indicatorActiveColor: {
- type: String,
- default: uni.$u.props.swiperIndicator.indicatorActiveColor
- },
-
- indicatorInactiveColor: {
- type: String,
- default: uni.$u.props.swiperIndicator.indicatorInactiveColor
- },
-
- indicatorMode: {
- type: String,
- default: uni.$u.props.swiperIndicator.indicatorMode
- }
- }
- }
|