UNPKG

@syncfusion/ej2-vue-layouts

Version:

A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Vue

25 lines (24 loc) 714 B
import { DefineVueDirective } from '@syncfusion/ej2-vue-base'; import { PanePropertiesModel } from '@syncfusion/ej2-layouts'; export declare let PanesDirective: any; export declare const PanesPlugin: { name: string; install(Vue: any): void; }; /** * 'e-pane' directive represent a pane of Vue Splitter * It must be contained in a Splitter component(`ejs-splitter`). * ```html * <ejs-splitter id='splitter'> * <e-panes> * <e-pane size='150px'></e-pane> * <e-pane size='150px'></e-pane> * </e-panes> * </ejs-splitter> * ``` */ export declare let PaneDirective: DefineVueDirective<PanePropertiesModel>; export declare const PanePlugin: { name: string; install(Vue: any): void; };