tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
26 lines (25 loc) • 368 B
JavaScript
const e = {
type: {
type: String,
default: () => "default",
validator: (t) => [
"default",
"primary",
"success",
"danger",
"warning",
""
].includes(t)
},
prohibit: Boolean,
url: String,
underline: {
type: Boolean,
default: () => !0
},
target: String,
icon: String
};
export {
e as Props
};