t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
26 lines (25 loc) • 353 B
JavaScript
const t = {
color: {
type: String,
default: () => ""
},
icon: {
type: Object,
default: () => null
},
iconSize: {
type: [String, Number],
default: () => "16px"
},
dataKey: {
type: [String, Number],
default: () => ""
},
click: {
type: Function,
default: () => null
}
};
export {
t as Props
};