mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-11 04:19:31 +00:00
20 lines
411 B
Vue
20 lines
411 B
Vue
<script setup lang="ts">
|
|
import {
|
|
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>
|