tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
24 lines (23 loc) • 364 B
JavaScript
const r = {
type: {
type: String,
default: () => "default",
validator: (e) => [
"default",
"primary",
"success",
"danger",
"warning",
""
].includes(e)
},
size: {
type: String,
validator: (e) => ["small", "mini", ""].includes(e)
},
round: Boolean,
isClose: Boolean
};
export {
r as Props
};