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

38 lines (37 loc) 1.35 kB
import { ComponentBase } from '@syncfusion/ej2-vue-base'; export declare const properties: string[]; export declare const modelProps: string[]; /** * Represents the Essential JS 2 VueJS Menu Component. * ```html * <ejs-menu :items='menuItems'></ejs-menu> * ``` */ export declare class MenuComponent 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; close(): void; enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void; getItemIndex(item: Object | string, isUniqueId?: boolean): number[]; hideItems(items: string[], isUniqueId?: boolean): void; insertAfter(items: Object[], text: string, isUniqueId?: boolean): void; insertBefore(items: Object[], text: string, isUniqueId?: boolean): void; open(): void; removeItems(items: string[], isUniqueId?: boolean): void; setItem(item: Object, id?: string, isUniqueId?: boolean): void; showItems(items: string[], isUniqueId?: boolean): void; } export declare const MenuPlugin: { name: string; install(Vue: any): void; };