frontend/app/components/ui/popover/PopoverAnchor.vue

13 lines
301 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { PopoverAnchorProps } from "reka-ui";
import { PopoverAnchor } from "reka-ui";
const props = defineProps<PopoverAnchorProps>();
</script>
<template>
2025-12-09 22:32:22 +01:00
<PopoverAnchor data-slot="popover-anchor" v-bind="props">
2026-01-09 21:47:12 +01:00
<slot />
2025-12-09 22:32:22 +01:00
</PopoverAnchor>
</template>