16 lines
326 B
Vue
16 lines
326 B
Vue
<script setup lang="ts">
|
|
import type { ContextMenuPortalProps } from "reka-ui"
|
|
import { ContextMenuPortal } from "reka-ui"
|
|
|
|
const props = defineProps<ContextMenuPortalProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuPortal
|
|
data-slot="context-menu-portal"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</ContextMenuPortal>
|
|
</template>
|