UNPKG

@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

34 lines (33 loc) 955 B
import { ComponentBase } from '@syncfusion/ej2-vue-base'; export declare const properties: string[]; export declare const modelProps: string[]; /** * Represents the Essential JS 2 VueJS Sidebar Component. * ```html * <ejs-sidebar></ejs-sidebar> * ``` */ export declare class SidebarComponent 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; trigger(eventName: string, eventProp: { [key: string]: Object; }, successHandler?: Function): void; render(createElement: any): any; hide(e?: Object): void; show(e?: Object): void; toggle(e?: Object): void; } export declare const SidebarPlugin: { name: string; install(Vue: any): void; };