mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 12:27:44 +00:00
36 lines
1.0 KiB
Vue
36 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import {
|
|
NavigationMenuViewport,
|
|
type NavigationMenuViewportProps,
|
|
useForwardProps,
|
|
} from "radix-vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<
|
|
NavigationMenuViewportProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="absolute left-0 top-full flex justify-center">
|
|
<NavigationMenuViewport
|
|
v-bind="forwardedProps"
|
|
:class="
|
|
cn(
|
|
'origin-top-center relative mt-1.5 h-[--radix-navigation-menu-viewport-height] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[--radix-navigation-menu-viewport-width]',
|
|
props.class,
|
|
)
|
|
"
|
|
/>
|
|
</div>
|
|
</template>
|