Standardize import paths across UI components to use ~/lib/utils alias instead of @/lib/utils for better consistency and maintainability.
36 lines
918 B
Vue
36 lines
918 B
Vue
<script setup lang="ts">
|
|
import type { NavigationMenuRootEmits, NavigationMenuRootProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import {
|
|
NavigationMenuRoot,
|
|
|
|
useForwardPropsEmits,
|
|
} from 'radix-vue'
|
|
import { computed } from 'vue'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
import NavigationMenuViewport from './NavigationMenuViewport.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>
|