Popout Hover

A convenience wrapper around Popout that automatically shows and hides the popout based on hover and focus events. Unlike Tooltip, the content inside PopoutHover is fully interactive - users can move their mouse into the popout and interact with its contents.

Please note: PopoutHover (and the underlying Popout) cannot be styled using scoped CSS in Vue SFC. Define a separate non-scoped <style> block to style the popout container.

Props

PopoutHover accepts all props from Popout except anchor and visible. The following additional prop is available:

NameDefaultType
disabledfalseboolean
When true, the popout will not open on hover. The trigger slot content remains visible
enter-delay200number
Delay in milliseconds before the popout becomes visible after hovering in
leave-delay200number
Delay in milliseconds before the popout hides after the cursor leaves
placementtopstring
Position of the popout relative to the trigger. Inherits all placement values from Popout

Slots

NameAcceptsDescription
triggeranyThe element that triggers the popout on hover or focus
defaultanyThe interactive content rendered inside the popout