1234567891011121314151617181920212223242526272829303132333435 |
- 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
- },
-
- indicatorStyle: {
- type: [String, Object],
- default: defprops.scrollList.indicatorStyle
- }
- }
- }
|