@syncfusion/ej2-vue-navigations
Version:
A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue
28 lines (27 loc) • 617 B
TypeScript
import Vue from 'vue';
export declare class ItemsDirective extends Vue {
render(): void;
}
export declare const ItemsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* 'e-item' directive represent a item of Vue Toolbar
* It must be contained in a Toolbar component(`ejs-toolbar`).
* ```html
* <ejs-toolbar>
* <e-items>
* <e-item text='Cut'></e-item>
* <e-item text='Copy'></e-item>
* </e-items>
* </ejs-toolbar>
* ```
*/
export declare class ItemDirective extends Vue {
render(): void;
}
export declare const ItemPlugin: {
name: string;
install(Vue: any): void;
};