Use hover card, fix watch query

This commit is contained in:
2025-07-21 00:18:37 +05:00
parent 897923d6c8
commit e0dec22fe8
7 changed files with 103 additions and 16 deletions

View File

@ -0,0 +1,17 @@
<script setup lang="ts">
import { HoverCardRoot, type HoverCardRootEmits, type HoverCardRootProps, useForwardPropsEmits } from 'reka-ui'
const props = defineProps<HoverCardRootProps>()
const emits = defineEmits<HoverCardRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<HoverCardRoot
data-slot="hover-card"
v-bind="forwarded"
>
<slot />
</HoverCardRoot>
</template>