mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 04:08:10 +08:00
ea7f7bb6d7
* 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
|
|
}
|