28 lines
1.2 KiB
Vue
28 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import {
|
|
NavigationMenuLink,
|
|
type NavigationMenuLinkEmits,
|
|
type NavigationMenuLinkProps,
|
|
useForwardPropsEmits,
|
|
} from 'reka-ui'
|
|
|
|
const props = defineProps<NavigationMenuLinkProps & { class?: HTMLAttributes['class'] }>()
|
|
const emits = defineEmits<NavigationMenuLinkEmits>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class')
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<NavigationMenuLink
|
|
data-slot="navigation-menu-link"
|
|
v-bind="forwarded"
|
|
:class="cn(`'data-[active=true]:focus:bg-accent data-[active=true]:hover:bg-accent data-[active=true]:bg-accent/50 data-[active=true]:text-accent-foreground hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground ring-ring/10 dark:ring-ring/20 dark:outline-ring/40 outline-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-[color,box-shadow] focus-visible:ring-4 focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4'`, props.class)"
|
|
>
|
|
<slot />
|
|
</NavigationMenuLink>
|
|
</template>
|