comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
31 lines (30 loc) • 499 B
JavaScript
const calendarProps = {
modelValue: Date,
size: String,
showWeek: {
type: Boolean,
default: true
},
showHeader: {
type: Boolean,
default: true
},
showDay: {
type: Boolean,
default: true
},
openSchedule: Boolean,
schedules: {
type: Array
},
cardWidth: Number,
format: String
};
const calendarEmits = {
"update:modelValue": (date) => date instanceof Date,
change: (date) => date instanceof Date
};
export {
calendarEmits,
calendarProps
};