mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
import { ElementUIComponent } from './component'
|
||
|
|
||
|
/** Menu Item Component */
|
||
|
export declare class ElMenuItem extends ElementUIComponent {
|
||
|
/** Unique identification */
|
||
|
index: string
|
||
|
|
||
|
/** Vue Router object */
|
||
|
route: Record<string, unknown>
|
||
|
}
|