123456789101112131415161718192021222324252627282930313233343536 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- 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
- },
-
- safeBottomFix: {
- type: Boolean,
- default: () => defProps.indexList.safeBottomFix
- },
- }
- })
|