UNPKG

535 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Submenu Component */
4export declare class ElSubmenu extends ElementUIComponent {
5 /** Unique identification */
6 index: string
7
8 /** Delay time before showing a sub-menu */
9 showTimeout: number
10
11 /** Delay time before hiding a sub-menu */
12 hideTimeout: number
13
14 /** Custom class name for the popup menu */
15 popperClass: string
16
17 /** Whether the sub-menu is disabled */
18 disabled: boolean
19
20 /** Whether to append the popper menu to body */
21 popperAppendToBody: boolean
22}