mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 13:56:07 +02:00
16 lines
384 B
Vue
16 lines
384 B
Vue
<script setup>
|
|
import { PopoverAnchor } from 'reka-ui';
|
|
|
|
const props = defineProps({
|
|
reference: { type: null, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<PopoverAnchor data-slot="popover-anchor" v-bind="props">
|
|
<slot />
|
|
</PopoverAnchor>
|
|
</template>
|