123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- offsetTop: {
- type: [String, Number],
- default: () => defProps.sticky.offsetTop
- },
-
- customNavHeight: {
- type: [String, Number],
-
-
- default: 44,
-
-
- default: () => defProps.sticky.customNavHeight
-
- },
-
- disabled: {
- type: Boolean,
- default: () => defProps.sticky.disabled
- },
-
- bgColor: {
- type: String,
- default: () => defProps.sticky.bgColor
- },
-
- zIndex: {
- type: [String, Number],
- default: () => defProps.sticky.zIndex
- },
-
- index: {
- type: [String, Number],
- default: () => defProps.sticky.index
- }
- }
- })
|