submenu.d.ts 542 B

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