@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) • 755 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { TimelineItemModel } from '@syncfusion/ej2-layouts';
export declare let ItemsDirective: any;
export declare const ItemsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* 'e-timelineItem' directive represents a item of the Vue Timeline
* It must be contained in a Timeline component(`ejs-timeline`).
* ```html
* <ejs-timeline>
* <e-items>
* <e-item :dotCss='e-icons e-folder' :content='Item 1' />
* <e-item :dotCss='e-icons e-folder' :content='Item 2' />
* </e-items>
* </ejs-timeline>
* ```
*/
export declare let ItemDirective: DefineVueDirective<TimelineItemModel>;
export declare const ItemPlugin: {
name: string;
install(Vue: any): void;
};