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) 779 B
import { DefineVueDirective } from '@syncfusion/ej2-vue-base'; import { ResourcesModel } from '@syncfusion/ej2-schedule'; export declare let ResourcesDirective: any; export declare const ResourcesPlugin: { name: string; install(Vue: any): void; }; /** * `e-resources` directive represent a resources of the VueJS Schedule. * It must be contained in a Schedule component(`ejs-schedule`). * ```vue * <ejs-schedule> * <e-resources> * <e-resource field='RoomId' name='Rooms'></e-resource> * <e-resource field='OwnerId' name='Owners'></e-resource> * </e-resources> * </ejs-schedule> * ``` */ export declare let ResourceDirective: DefineVueDirective<ResourcesModel>; export declare const ResourcePlugin: { name: string; install(Vue: any): void; };