21 lines
429 B
Vue
21 lines
429 B
Vue
<script setup lang="ts">
|
|
import {
|
|
MenubarRadioGroup,
|
|
type MenubarRadioGroupEmits,
|
|
type MenubarRadioGroupProps,
|
|
useForwardPropsEmits,
|
|
} from 'reka-ui'
|
|
|
|
const props = defineProps<MenubarRadioGroupProps>()
|
|
|
|
const emits = defineEmits<MenubarRadioGroupEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarRadioGroup v-bind="forwarded">
|
|
<slot />
|
|
</MenubarRadioGroup>
|
|
</template>
|