mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-19 05:09:37 +02:00
14 lines
414 B
Vue
14 lines
414 B
Vue
<script setup lang="ts">
|
|
import { DropdownMenuRoot, type DropdownMenuRootEmits, type DropdownMenuRootProps, useForwardPropsEmits } from 'radix-vue'
|
|
|
|
const props = defineProps<DropdownMenuRootProps>()
|
|
const emits = defineEmits<DropdownMenuRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRoot v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuRoot>
|
|
</template>
|