You've already forked template-MP-ts
Initial commit
This commit is contained in:
36
uview-plus/components/u-scroll-list/props.js
Normal file
36
uview-plus/components/u-scroll-list/props.js
Normal file
@@ -0,0 +1,36 @@
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import defProps from '../../libs/config/props.js'
|
||||
export const props = defineMixin({
|
||||
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
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user