t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
46 lines (45 loc) • 627 B
JavaScript
const t = {
show: {
type: Boolean,
default: () => !1
},
close: {
type: Boolean,
default: () => !1
},
text: {
type: String,
default: () => ""
},
fontColor: {
type: String,
default: () => ""
},
iconColor: {
type: String,
default: () => ""
},
fontSize: {
type: String,
default: () => ""
},
background: {
type: String,
default: () => ""
},
opacity: {
type: Number,
default: () => null
},
icon: {
type: Object,
default: () => null
},
closeEnd: {
type: Function,
default: () => null
}
};
export {
t as Props
};