2017-10-17 16:36:12 +08:00
|
|
|
import { ElementUIComponent } from './component'
|
|
|
|
|
|
|
|
/** Submenu Component */
|
|
|
|
export declare class ElSubmenu extends ElementUIComponent {
|
|
|
|
/** Unique identification */
|
2019-02-22 19:25:38 +08:00
|
|
|
index: string | null
|
2018-01-04 17:11:51 +08:00
|
|
|
|
2018-04-02 17:18:50 +08:00
|
|
|
/** Delay time before showing a sub-menu */
|
|
|
|
showTimeout: number
|
|
|
|
|
|
|
|
/** Delay time before hiding a sub-menu */
|
2018-01-04 17:11:51 +08:00
|
|
|
hideTimeout: number
|
2018-04-02 17:18:50 +08:00
|
|
|
|
|
|
|
/** Custom class name for the popup menu */
|
|
|
|
popperClass: string
|
|
|
|
|
|
|
|
/** Whether the sub-menu is disabled */
|
|
|
|
disabled: boolean
|
|
|
|
|
|
|
|
/** Whether to append the popper menu to body */
|
|
|
|
popperAppendToBody: boolean
|
2017-10-17 16:36:12 +08:00
|
|
|
}
|