mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
33 lines
762 B
Vue
33 lines
762 B
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import {
|
|
type NavigationMenuRootEmits,
|
|
type NavigationMenuRootProps,
|
|
useForwardPropsEmits,
|
|
} from "radix-vue";
|
|
|
|
const props = defineProps<
|
|
NavigationMenuRootProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
|
|
const emits = defineEmits<NavigationMenuRootEmits>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<NavigationMenuRoot
|
|
v-bind="forwarded"
|
|
:class="cn('relative z-10 flex max-w-max flex-1 items-center justify-center', props.class)"
|
|
>
|
|
<slot />
|
|
<NavigationMenuViewport />
|
|
</NavigationMenuRoot>
|
|
</template>
|