Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<template>
<div class="demo-space-x">
<!-- open on hover -->
<VBtn variant="outlined">
<span>Open On Hover</span>
<VTooltip
activator="parent"
location="top"
>
Open On Hover
</VTooltip>
</VBtn>
<!-- open on click -->
<VBtn
variant="outlined"
color="primary"
>
<span>Open On click</span>
<VTooltip
open-on-click
:open-on-hover="false"
location="top"
activator="parent"
>
Open On click
</VTooltip>
</VBtn>
<!-- open on focus -->
<VBtn variant="outlined">
<span>Open On Hover + Focus</span>
<VTooltip
open-on-focus
location="top"
activator="parent"
>
Open On Hover + Focus
</VTooltip>
</VBtn>
</div>
</template>