123456789101112131415161718192021222324252627282930 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- length: {
- type: [String, Number],
- default: defprops.swiperIndicator.length
- },
-
- current: {
- type: [String, Number],
- default: defprops.swiperIndicator.current
- },
-
- indicatorActiveColor: {
- type: String,
- default: defprops.swiperIndicator.indicatorActiveColor
- },
-
- indicatorInactiveColor: {
- type: String,
- default: defprops.swiperIndicator.indicatorInactiveColor
- },
-
- indicatorMode: {
- type: String,
- default: defprops.swiperIndicator.indicatorMode
- }
- }
- }
|