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.2 kB
import { ComponentBase } from '@syncfusion/ej2-vue-base'; export declare const properties: string[]; export declare const modelProps: string[]; /** * Represents the VueJS Accoridon Component. * ```html * <ejs-accordion></ejs-accordion> * ``` */ export declare class AccordionComponent 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; addItem(item: Object | Object[] | Object | Object[], index?: number): void; enableItem(index: number, isEnable: boolean): void; expandItem(isExpand: boolean, index?: number): void; hideItem(index: number, isHidden?: Object): void; refresh(): void; removeItem(index: number): void; select(index: number): void; } export declare const AccordionPlugin: { name: string; install(Vue: any): void; };