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