UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

28 lines (27 loc) 453 B
import "../../../utils/config.mjs"; import "vue"; import { isBoolean } from "../../../utils/typescript.mjs"; import "@vueuse/core"; const affixProps = { position: { type: String, default: "top" }, offset: { type: Number, default: 0 }, target: String, zIndex: { type: Number, default: 100 }, disabled: Boolean }; const affixEmits = { change: (value) => isBoolean(value) }; export { affixEmits, affixProps };