svelte-pops
Introduction
Tooltip : init action

You can use action to configure tooltip so that you don't need an extra DOM element and you gain performance.

svelte
import { initTooltip } from 'svelte-pops'

Props must be passed as a returned object of a function. This is required to keep reactivity.

svelte
{#snippet tooltip()}
	Tooltip content
{/snippet}

<button use:initTooltip={() => ({ children: tooltip, ...tooltipProps })}>
    Hover me !
</button>

Try it with a few props

disabled
onMouse
hideMS
tweenDuration
placement