t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
23 lines (22 loc) • 340 B
JavaScript
const t = {
title: {
type: String,
default: () => ""
},
round: {
type: Boolean,
default: () => !1
},
padding: {
type: String,
default: () => "20px"
},
shadow: {
type: String,
default: () => "never",
validator: (e) => ["never", "hover", "always"].includes(e)
}
};
export {
t as Props
};