1234567891011121314151617181920212223242526272829 |
- export default {
- props: {
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.indexList.inactiveColor
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.indexList.activeColor
- },
-
- indexList: {
- type: Array,
- default: uni.$u.props.indexList.indexList
- },
-
- sticky: {
- type: Boolean,
- default: uni.$u.props.indexList.sticky
- },
-
- customNavHeight: {
- type: [String, Number],
- default: uni.$u.props.indexList.customNavHeight
- }
- }
- }
|