comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
54 lines (53 loc) • 1.04 kB
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
require("../../../utils/config.js");
require("vue");
const typescript = require("../../../utils/typescript.js");
require("@vueuse/core");
const dialogProps = {
modelValue: Boolean,
showClose: {
type: Boolean,
default: true
},
modeClose: {
type: Boolean,
default: true
},
transitionClass: {
type: String,
default: "cross-scale"
},
header: String,
width: {
type: String,
default: "70%"
},
top: {
type: String,
default: "15vh"
},
color: {
type: String,
default: "#ffffff"
},
beforeClose: Function,
lockScroll: {
type: Boolean,
default: true
},
appendTo: String,
appendToBody: {
type: Boolean,
default: true
},
customClass: String,
modeClass: String
};
const dialogEmits = {
["update:modelValue"]: (value) => typescript.isBoolean(value),
close: () => true,
open: () => true
};
exports.dialogEmits = dialogEmits;
exports.dialogProps = dialogProps;