mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
31 lines
1001 B
Vue
31 lines
1001 B
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import { type NavigationMenuViewportProps, useForwardProps } from "radix-vue";
|
|
|
|
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>
|