OfficeSystem/node_modules/@climblee/uv-ui/components/uv-scroll-list/props.js

35 lines
666 B
JavaScript
Raw Normal View History

2025-10-30 16:42:12 +08:00
export default {
props: {
// 指示器的整体宽度
indicatorWidth: {
type: [String, Number],
default: 50
},
// 滑块的宽度
indicatorBarWidth: {
type: [String, Number],
default: 20
},
// 是否显示面板指示器
indicator: {
type: Boolean,
default: true
},
// 指示器非激活颜色
indicatorColor: {
type: String,
default: '#f2f2f2'
},
// 指示器的激活颜色
indicatorActiveColor: {
type: String,
default: '#3c9cff'
},
// 指示器样式可通过bottomleftright进行定位
indicatorStyle: {
type: [String, Object],
default: ''
},
...uni.$uv?.props?.scrollList
}
}