submenu.d.ts 601 B

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