t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
47 lines (46 loc) • 704 B
JavaScript
const t = {
visible: {
type: Boolean,
default: () => !1
},
imgList: {
type: Array,
default: () => []
},
modalClose: {
type: Boolean,
default: () => !0
},
isCloseBtn: {
type: Boolean,
default: () => !0
},
showIndex: {
type: Number,
default: () => 0,
validator: (e) => e >= 0
},
zIndex: {
type: Number,
default: () => 999,
validator: (e) => e >= 0
},
isOption: {
type: Boolean,
default: () => !0
},
round: {
type: String,
default: () => ""
},
close: {
type: Function,
default: () => null
}
}, l = {
"update:visible": (e) => typeof e == "boolean"
};
export {
l as Emits,
t as Props
};