dykj-outsource-12123/uni_modules/uview-plus/components/u-swiper-indicator/props.js
2024-06-28 14:18:30 +08:00

31 lines
931 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
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
}
}
}