mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +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>
|
|
}
|