t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
42 lines (41 loc) • 599 B
JavaScript
const t = {
icon: {
type: Object,
default: () => null
},
iconSize: {
type: [String, Number],
default: () => "16px"
},
backText: {
type: String,
default: () => "\u8FD4\u56DE"
},
title: {
type: String,
default: () => ""
},
titleBold: {
type: Boolean,
default: () => !1
},
titleColor: {
type: String,
default: () => ""
},
titleCenter: {
type: Boolean,
default: () => !1
},
subtitle: {
type: String,
default: () => ""
},
back: {
type: Function,
default: () => null
}
};
export {
t as Props
};