feat: add tooltip for status action

This commit is contained in:
三咲智子 2022-11-24 13:04:20 +08:00
parent b947931d3b
commit 6b3a14cf1e
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
6 changed files with 132 additions and 36 deletions

View file

@ -0,0 +1,16 @@
<script setup lang="ts">
</script>
<template>
<VTooltip
v-bind="$attrs"
>
<slot />
<template #popper>
<div text-3>
<slot name="popper" />
</div>
</template>
</VTooltip>
</template>