25 lines
386 B
JavaScript
25 lines
386 B
JavaScript
|
const backtopProps = {
|
||
|
visibilityHeight: {
|
||
|
type: Number,
|
||
|
default: 200
|
||
|
},
|
||
|
target: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
right: {
|
||
|
type: Number,
|
||
|
default: 40
|
||
|
},
|
||
|
bottom: {
|
||
|
type: Number,
|
||
|
default: 40
|
||
|
}
|
||
|
};
|
||
|
const backtopEmits = {
|
||
|
click: (evt) => evt instanceof MouseEvent
|
||
|
};
|
||
|
|
||
|
export { backtopEmits, backtopProps };
|
||
|
//# sourceMappingURL=backtop.mjs.map
|