mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
56 lines
1.2 KiB
Vue
56 lines
1.2 KiB
Vue
<script lang="ts" setup>
|
|
import { resolveRouteFullPath } from 'vuepress/client'
|
|
import VPLink from '@theme/VPLink.vue'
|
|
import VPIcon from '@theme/VPIcon.vue'
|
|
import type { ResolvedNavItemWithLink } from '../../../shared/resolved/navbar.js'
|
|
import { isActive } from '../../utils/index.js'
|
|
import { useData } from '../../composables/data.js'
|
|
|
|
defineProps<{
|
|
item: ResolvedNavItemWithLink
|
|
}>()
|
|
|
|
const { page } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<VPLink
|
|
class="navbar-menu-link" :class="{
|
|
active: isActive(
|
|
page.path,
|
|
item.activeMatch || resolveRouteFullPath(item.link),
|
|
!!item.activeMatch,
|
|
),
|
|
}"
|
|
:href="item.link"
|
|
:no-icon="item.noIcon"
|
|
:target="item.target"
|
|
:rel="item.rel"
|
|
tabindex="0"
|
|
>
|
|
<VPIcon v-if="item.icon" :name="item.icon" />
|
|
<span v-html="item.text" />
|
|
</VPLink>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.navbar-menu-link {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: var(--vp-nav-height);
|
|
color: var(--vp-c-text-1);
|
|
transition: color var(--t-color);
|
|
}
|
|
|
|
.navbar-menu-link.active {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
|
|
.navbar-menu-link:hover {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
</style>
|