12345678910111213141516171819202122232425262728293031 |
- "use strict";
- var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
- var props = {
- props: {
- offsetTop: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.offsetTop
- },
- customNavHeight: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.customNavHeight
- },
- disabled: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.disabled
- },
- bgColor: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.bgColor
- },
- zIndex: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.zIndex
- },
- index: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.index
- }
- }
- };
- exports.props = props;
|