UNPKG

comic-plus

Version:

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

42 lines (41 loc) 666 B
import "../../../utils/config.mjs"; import "vue"; import { isString } from "../../../utils/typescript.mjs"; import "@vueuse/core"; const elevatorProps = { height: { type: String, default: "100%" }, offset: { type: Number, default: 0 }, postion: { type: String, default: "right-bottom" }, hasMenu: { type: Boolean, default: true }, menuSize: { type: String, default: "40px" }, fold: { type: Boolean, default: true }, scrollbarDisplay: { type: String, default: "always" } }; const elevatorEmits = { change: (value) => isString(value) }; export { elevatorEmits, elevatorProps };