t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
47 lines (46 loc) • 713 B
JavaScript
const e = {
date: {
type: Date,
default: () => new Date(),
required: !0
},
lunar: {
type: Boolean,
default: () => !1
},
showHeader: {
type: Boolean,
default: () => !0
},
border: {
type: Boolean,
default: () => !1
},
borderColor: {
type: String,
default: () => "#eee"
},
dayCellHeight: {
type: [String, Number],
default: () => "85px"
},
weekCellHeight: {
type: [String, Number],
default: () => "50px"
},
memorandum: {
type: Object,
default: () => null
},
changeDate: {
type: Function,
default: () => null
},
changeSwitch: {
type: Function,
default: () => null
}
};
export {
e as Props
};