mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-20 14:28:57 +00:00
15 lines
419 B
Vue
15 lines
419 B
Vue
<script setup lang="ts">
|
|
import { DropdownMenuSub, useForwardPropsEmits, type DropdownMenuSubEmits, type DropdownMenuSubProps } from 'radix-vue';
|
|
|
|
const props = defineProps<DropdownMenuSubProps>();
|
|
const emits = defineEmits<DropdownMenuSubEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuSub v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuSub>
|
|
</template>
|