UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

31 lines (30 loc) 619 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); 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 }; exports.calendarEmits = calendarEmits; exports.calendarProps = calendarProps;