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