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

28 lines (27 loc) 756 B
import Vue from 'vue'; export declare class AccordionItemsDirective extends Vue { render(): void; } export declare const AccordionItemsPlugin: { name: string; install(Vue: any): void; }; /** * 'e-accordionitem' directive represent a item of Vue Accordion * It must be contained in a Accordion component(`ejs-accordion`). * ```html * <ejs-accordion> * <e-accordionitems> * <e-accordionitem header='Header1'></e-accordionitem> * <e-accordionitem header='Header2' content='Content2'></e-accordionitem> * </e-accordionitems> * </ejs-accordion> * ``` */ export declare class AccordionItemDirective extends Vue { render(): void; } export declare const AccordionItemPlugin: { name: string; install(Vue: any): void; };