23 lines
447 B
Vue
23 lines
447 B
Vue
<script setup lang="ts">
|
|
import {
|
|
ContextMenuSub,
|
|
type ContextMenuSubEmits,
|
|
type ContextMenuSubProps,
|
|
useForwardPropsEmits,
|
|
} from 'reka-ui'
|
|
|
|
const props = defineProps<ContextMenuSubProps>()
|
|
const emits = defineEmits<ContextMenuSubEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuSub
|
|
data-slot="context-menu-sub"
|
|
v-bind="forwarded"
|
|
>
|
|
<slot />
|
|
</ContextMenuSub>
|
|
</template>
|