Files
015/front/components/ui/menubar/MenubarRadioGroup.vue

16 lines
479 B
Vue

<script setup lang="ts">
import type { MenubarRadioGroupEmits, MenubarRadioGroupProps } from 'reka-ui'
import { MenubarRadioGroup, useForwardPropsEmits } from 'reka-ui'
const props = defineProps<MenubarRadioGroupProps>()
const emits = defineEmits<MenubarRadioGroupEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<MenubarRadioGroup data-slot="menubar-radio-group" v-bind="forwarded">
<slot />
</MenubarRadioGroup>
</template>