mirror of
https://github.com/keven1024/015.git
synced 2026-06-08 13:24:33 +00:00
16 lines
479 B
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>
|