@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
25 lines (24 loc) • 751 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { TabItemModel } from '@syncfusion/ej2-navigations';
export declare let TabItemsDirective: any;
export declare const TabItemsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* 'e-tabitem' directive represent a item of the Vue Tab
* It must be contained in a Tab component(`ejs-tab`).
* ```html
* <ejs-tab>
* <e-tabitems>
* <e-tabitem :header='Header 1' :content='Content 1'></e-tabitem>
* <e-tabitem :header='Header 2' :content='Content 2'></e-tabitem>
* <e-tabitems>
* </ejs-tab>
* ```
*/
export declare let TabItemDirective: DefineVueDirective<TabItemModel>;
export declare const TabItemPlugin: {
name: string;
install(Vue: any): void;
};