t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
43 lines (42 loc) • 636 B
JavaScript
const t = {
round: {
type: Boolean,
default: () => !1
},
size: {
type: String,
default: () => "large",
validator: (e) => ["large", "middle", "small", "mini"].includes(e)
},
block: {
type: Boolean,
default: () => !1
},
background: {
type: String,
default: () => ""
},
textColor: {
type: String,
default: () => ""
},
fixed: {
type: Boolean,
default: () => !1
},
width: {
type: String,
default: () => ""
},
height: {
type: String,
default: () => ""
},
click: {
type: Function,
default: () => null
}
};
export {
t as Props
};