mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
21 lines
431 B
Vue
21 lines
431 B
Vue
<script setup lang="ts">
|
|
import {
|
|
MenubarRadioGroup,
|
|
type MenubarRadioGroupEmits,
|
|
type MenubarRadioGroupProps,
|
|
useForwardPropsEmits,
|
|
} from 'radix-vue'
|
|
|
|
const props = defineProps<MenubarRadioGroupProps>()
|
|
|
|
const emits = defineEmits<MenubarRadioGroupEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarRadioGroup v-bind="forwarded">
|
|
<slot />
|
|
</MenubarRadioGroup>
|
|
</template>
|