@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
36 lines (35 loc) • 1.03 kB
TypeScript
import { ComponentBase } from '@syncfusion/ej2-vue-base';
export declare const properties: string[];
export declare const modelProps: string[];
/**
* Represents the VueJS Tab Component.
* ```html
* <ejs-tab></ejs-tab>
* ```
*/
export declare class TabComponent extends ComponentBase {
ej2Instances: any;
propKeys: string[];
models: string[];
hasChildDirective: boolean;
protected hasInjectedModules: boolean;
tagMapper: {
[key: string]: Object;
};
tagNameMapper: Object;
constructor();
setProperties(prop: any, muteOnChange: boolean): void;
render(createElement: any): any;
addTab(items: Object[], index?: number): void;
disable(value: boolean): void;
enableTab(index: number, value: boolean): void;
hideTab(index: number, value?: boolean): void;
refresh(): void;
refreshActiveTab(): void;
removeTab(index: number): void;
select(args: number | Object): void;
}
export declare const TabPlugin: {
name: string;
install(Vue: any): void;
};