mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
12 lines
260 B
Vue
12 lines
260 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import { DropdownMenuGroup, type DropdownMenuGroupProps } from 'radix-vue'
|
||
|
|
||
|
const props = defineProps<DropdownMenuGroupProps>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<DropdownMenuGroup v-bind="props">
|
||
|
<slot />
|
||
|
</DropdownMenuGroup>
|
||
|
</template>
|