mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
23 lines
524 B
Vue
23 lines
524 B
Vue
<script setup lang="ts">
|
|
import {
|
|
DropdownMenuRadioGroup,
|
|
type DropdownMenuRadioGroupEmits,
|
|
type DropdownMenuRadioGroupProps,
|
|
useForwardPropsEmits,
|
|
} from "reka-ui";
|
|
|
|
const props = defineProps<DropdownMenuRadioGroupProps>();
|
|
const emits = defineEmits<DropdownMenuRadioGroupEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRadioGroup
|
|
data-slot="dropdown-menu-radio-group"
|
|
v-bind="forwarded"
|
|
>
|
|
<slot />
|
|
</DropdownMenuRadioGroup>
|
|
</template>
|