feat: more actions in status card

This commit is contained in:
三咲智子 2022-11-24 16:34:05 +08:00
parent 2422c809e0
commit e9c9ecefc8
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
7 changed files with 157 additions and 87 deletions

View file

@ -1,5 +1,7 @@
<script setup lang="ts">
defineProps<{
content?: string
}>()
</script>
<template>
@ -9,7 +11,9 @@
<slot />
<template #popper>
<div text-3>
<slot name="popper" />
<slot name="popper">
{{ content }}
</slot>
</div>
</template>
</VTooltip>