comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
56 lines (55 loc) • 986 B
JavaScript
"use strict";
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const confirmOptions = {
title: {
type: String,
default: "提示"
},
type: String,
content: [String, Object],
center: Boolean,
cancelButtonText: {
type: String,
default: "取消"
},
confirmButtonText: {
type: String,
default: "确认"
},
icon: Object,
color: String,
modeClose: Boolean,
escClose: {
type: Boolean,
default: true
},
distinguishCloseAndCancel: Boolean,
showConfirmButton: {
type: Boolean,
default: true
},
showCancelButton: {
type: Boolean,
default: true
},
showClose: {
type: Boolean,
default: true
},
showIcon: {
type: Boolean,
default: true
},
lockScroll: {
type: Boolean,
default: true
},
isVNode: Boolean,
customClass: String,
modeClass: String
};
const confirmProps = {
...confirmOptions,
destroy: Function
};
exports.confirmProps = confirmProps;