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

25 lines (24 loc) 726 B
import { DefineVueDirective } from '@syncfusion/ej2-vue-base'; import { StepModel } from '@syncfusion/ej2-navigations'; export declare let StepsDirective: any; export declare const StepsPlugin: { name: string; install(Vue: any): void; }; /** * 'e-step' directive represents a step of the Vue Stepper * It must be contained in a Stepper component(`ejs-stepper`). * ```html * <ejs-stepper> * <e-steps> * <e-step :iconCss='e-icons e-folder' :text='Step 1' /> * <e-step :iconCss='e-icons e-folder' :text='Step 2' /> * </e-steps> * </ejs-stepper> * ``` */ export declare let StepDirective: DefineVueDirective<StepModel>; export declare const StepPlugin: { name: string; install(Vue: any): void; };