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 underlyingPopout) cannot be styled usingscopedCSS in Vue SFC. Define a separate non-scoped<style>block to style the popout container.
Online
Props
PopoutHover accepts all props from Popout except anchor and visible. The following additional prop is available:
| Name | Default | Type |
|---|---|---|
disabled | false | boolean When true, the popout will not open on hover. The trigger slot content remains visible |
enter-delay | 200 | number Delay in milliseconds before the popout becomes visible after hovering in |
leave-delay | 200 | number Delay in milliseconds before the popout hides after the cursor leaves |
placement | top | string Position of the popout relative to the trigger. Inherits all placement values from Popout |
Slots
| Name | Accepts | Description |
|---|---|---|
trigger | any | The element that triggers the popout on hover or focus |
default | any | The interactive content rendered inside the popout |