123456789101112131415161718192021222324252627282930 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- inactiveColor: {
- type: String,
- default: defprops.indexList.inactiveColor
- },
-
- activeColor: {
- type: String,
- default: defprops.indexList.activeColor
- },
-
- indexList: {
- type: Array,
- default: defprops.indexList.indexList
- },
-
- sticky: {
- type: Boolean,
- default: defprops.indexList.sticky
- },
-
- customNavHeight: {
- type: [String, Number],
- default: defprops.indexList.customNavHeight
- }
- }
- }
|