This commit is contained in:
2025-12-21 23:39:07 +01:00
parent 2829504b2b
commit f40c02585f
15 changed files with 295 additions and 527 deletions

View File

@@ -119,12 +119,12 @@ export default defineComponent({
onBeforeUnmount(() => tooltip.hide());
return () => <>
<div class="tooltip-container"
<span class="tooltip-container"
{...attrs}
onMouseenter={(e) => tooltip.show(props.tooltip, e.pageX, e.pageY)}
onMouseleave={() => tooltip.hide()}>
{slots.default?.()}
</div>
</span>
</>;
},
});