@quasar/quasar-ui-qcalendar
Version:
QCalendar - Day/Month/Week Calendars, Popups, Date Pickers, Schedules, Agendas, Planners and Tasks for your Vue Apps
19 lines (16 loc) • 309 B
text/typescript
import { PropType } from 'vue'
/**
* Interface for maxDays prop.
*/
export interface MaxDaysProps {
maxDays: number
}
/**
* Defines the maxDays prop for components.
*/
export const useMaxDaysProps = {
maxDays: {
type: Number as PropType<MaxDaysProps['maxDays']>,
default: 1,
},
} as const