mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-19 12:04:02 +08:00
* el-submenu add show-timeout,hide-timeout attributes * el-submenu add show-timeout,hide-timeout attributes * el-submenu add show-timeout,hide-timeout attributes * add the definition for SubMenu
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
/** Submenu Component */
|
|
export declare class ElSubmenu extends ElementUIComponent {
|
|
/** Unique identification */
|
|
index: string
|
|
|
|
/** Delay time before show a sub-menu */
|
|
showTimeout: number
|
|
|
|
/** Delay time before hide a sub-menu */
|
|
hideTimeout: number
|
|
}
|