mkm
/
yanzhiAPP
Template
2
0
Fork 0
yanzhiAPP/node_modules/uview-plus/components/u-swiper-indicator/props.js

31 lines
898 B
JavaScript
Raw Normal View History

2023-10-17 16:02:55 +08:00
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
},
// 指示器模式line-线型dot-点型
indicatorMode: {
type: String,
default: defprops.swiperIndicator.indicatorMode
}
}
}