vue3-calendar-component
Version:
A comprehensive Vue 3 Calendar component with Vuetify 3, TypeScript, and advanced features
26 lines • 1.43 kB
TypeScript
import type { CalendarEventInternal, EventDropData } from '@/plugin/types';
declare var __VLS_8: {
event: CalendarEventInternal;
};
type __VLS_Slots = {} & {
eventMenu?: (props: typeof __VLS_8) => any;
};
declare const __VLS_component: import("vue").DefineComponent<import("@/plugin/types").ViewProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"event-click": (data: import("@/plugin/types").EventClickData) => any;
"event-drop": (data: EventDropData) => any;
"date-click": (data: import("@/plugin/types").DateClickData) => any;
"time-slot-click": (data: import("@/plugin/types").TimeSlotClickData) => any;
}, string, import("vue").PublicProps, Readonly<import("@/plugin/types").ViewProps> & Readonly<{
"onEvent-click"?: ((data: import("@/plugin/types").EventClickData) => any) | undefined;
"onEvent-drop"?: ((data: EventDropData) => any) | undefined;
"onDate-click"?: ((data: import("@/plugin/types").DateClickData) => any) | undefined;
"onTime-slot-click"?: ((data: import("@/plugin/types").TimeSlotClickData) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=DayView.vue.d.ts.map