Files
t/uni_modules/uview-ui/components/u-scroll-list/props.js
T
root ffd214eeba fix: 修复 uView 组件文件编码乱码
- 85 个 uView props.js 的中文注释由 GBK 乱码还原为 UTF-8 并去除 BOM
- uview-ui/index.js 修复 2 行注释乱码
- 各文件头部 uview-init 兜底 import 保留,功能改动不变
2026-09-08 15:44:20 +08:00

36 lines
1.1 KiB
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 '@/common/uview-init.js'
export default {
props: {
// 指示器的整体宽度
indicatorWidth: {
type: [String, Number],
default: uni.$u.props.scrollList.indicatorWidth
},
// 滑块的宽度
indicatorBarWidth: {
type: [String, Number],
default: uni.$u.props.scrollList.indicatorBarWidth
},
// 是否显示面板指示器
indicator: {
type: Boolean,
default: uni.$u.props.scrollList.indicator
},
// 指示器非激活颜色
indicatorColor: {
type: String,
default: uni.$u.props.scrollList.indicatorColor
},
// 指示器的激活颜色
indicatorActiveColor: {
type: String,
default: uni.$u.props.scrollList.indicatorActiveColor
},
// 指示器样式,可通过bottom,left,right进行定位
indicatorStyle: {
type: [String, Object],
default: uni.$u.props.scrollList.indicatorStyle
}
}
}