11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
|
import { ElementUIComponent } from './component'
|
||
|
|
||
|
/** Menu Item Component */
|
||
|
export declare class ElMenuItem extends ElementUIComponent {
|
||
|
/** Unique identification */
|
||
|
index: string
|
||
|
|
||
|
/** Vue Router object */
|
||
|
route: object
|
||
|
}
|