UNPKG

@syncfusion/ej2-vue-schedule

Version:

Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Vue

25 lines (24 loc) 711 B
import { DefineVueDirective } from '@syncfusion/ej2-vue-base'; import { ViewsModel } from '@syncfusion/ej2-schedule'; export declare let ViewsDirective: any; export declare const ViewsPlugin: { name: string; install(Vue: any): void; }; /** * `e-views` directive represent a view of the VueJS Schedule. * It must be contained in a Schedule component(`ejs-schedule`). * ```vue * <ejs-schedule> * <e-views> * <e-view option='day' dateFormat='dd MMM'></e-view> * <e-view option='week'></e-view> * </e-views> * </ejs-schedule> * ``` */ export declare let ViewDirective: DefineVueDirective<ViewsModel>; export declare const ViewPlugin: { name: string; install(Vue: any): void; };