uview-costom
Version:
uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水
36 lines (35 loc) • 1.08 kB
JavaScript
import defprops from '../../libs/config/props';
export default {
props: {
// 指示器的整体宽度
indicatorWidth: {
type: [String, Number],
default: defprops.scrollList.indicatorWidth
},
// 滑块的宽度
indicatorBarWidth: {
type: [String, Number],
default: defprops.scrollList.indicatorBarWidth
},
// 是否显示面板指示器
indicator: {
type: Boolean,
default: defprops.scrollList.indicator
},
// 指示器非激活颜色
indicatorColor: {
type: String,
default: defprops.scrollList.indicatorColor
},
// 指示器的激活颜色
indicatorActiveColor: {
type: String,
default: defprops.scrollList.indicatorActiveColor
},
// 指示器样式,可通过bottom,left,right进行定位
indicatorStyle: {
type: [String, Object],
default: defprops.scrollList.indicatorStyle
}
}
}