mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 03:32:15 +01:00
16 lines
431 B
Vue
16 lines
431 B
Vue
<script setup lang="ts">
|
|
import type { ContextMenuSubEmits, ContextMenuSubProps } from 'reka-ui';
|
|
import { ContextMenuSub, useForwardPropsEmits } from 'reka-ui';
|
|
|
|
const props = defineProps<ContextMenuSubProps>();
|
|
const emits = defineEmits<ContextMenuSubEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuSub v-bind="forwarded">
|
|
<slot />
|
|
</ContextMenuSub>
|
|
</template>
|