You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
711 B
34 lines
711 B
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var props = require('../../../utils/props.js');
|
|
|
|
const affixProps = props.buildProps({
|
|
zIndex: {
|
|
type: props.definePropType([Number, String]),
|
|
default: 100
|
|
},
|
|
target: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
offset: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
position: {
|
|
type: String,
|
|
values: ["top", "bottom"],
|
|
default: "top"
|
|
}
|
|
});
|
|
const affixEmits = {
|
|
scroll: ({ scrollTop, fixed }) => typeof scrollTop === "number" && typeof fixed === "boolean",
|
|
change: (fixed) => typeof fixed === "boolean"
|
|
};
|
|
|
|
exports.affixEmits = affixEmits;
|
|
exports.affixProps = affixProps;
|
|
//# sourceMappingURL=affix.js.map
|