frontend/components/ui/popover/PopoverAnchor.vue

16 lines
304 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>
<PopoverAnchor
data-slot="popover-anchor"
v-bind="props"
>
<slot />
</PopoverAnchor>
</template>