tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
38 lines (37 loc) • 602 B
JavaScript
const t = {
modelValue: Boolean,
direction: {
type: String,
default: () => "right",
validator: (e) => ["top", "left", "bottom", "right", ""].includes(e)
},
size: {
type: String,
default: () => "30%"
},
title: String,
appendToBody: Boolean,
modal: {
type: Boolean,
default: () => !0
},
modalClose: {
type: Boolean,
default: () => !0
},
showClose: {
type: Boolean,
default: () => !0
},
showHeader: {
type: Boolean,
default: () => !0
},
zIndex: {
type: Number,
default: () => 3500
}
};
export {
t as Props
};