12345678910111213141516171819202122232425262728293031323334 |
- 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
- },
-
- indicatorStyle: {
- type: [String, Object],
- default: uni.$u.props.scrollList.indicatorStyle
- }
- }
- }
|