mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import { usePageData } from '@vuepress/client'
|
|
import { isActive } from '../../utils/index.js'
|
|
import AutoLink from '../AutoLink.vue'
|
|
|
|
defineProps<{
|
|
item: any
|
|
}>()
|
|
|
|
const page = usePageData()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="menu-link">
|
|
<AutoLink
|
|
:class="{
|
|
active: isActive(
|
|
page.path,
|
|
item.activeMatch || item.link,
|
|
!!item.activeMatch,
|
|
),
|
|
}"
|
|
:href="item.link"
|
|
>
|
|
<Icon v-if="item.icon" :name="item.icon" />
|
|
<i v-text="item.text" />
|
|
</AutoLink>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.menu-group + .menu-link {
|
|
padding: 12px 12px 0;
|
|
margin: 12px -12px 0;
|
|
border-top: 1px solid var(--vp-c-divider);
|
|
}
|
|
|
|
.link {
|
|
display: block;
|
|
padding: 0 12px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: var(--vp-c-text-1);
|
|
white-space: nowrap;
|
|
border-radius: 6px;
|
|
transition:
|
|
background-color 0.25s,
|
|
color 0.25s;
|
|
}
|
|
|
|
.link:hover {
|
|
color: var(--vp-c-brand-1);
|
|
background-color: var(--vp-c-default-soft);
|
|
}
|
|
|
|
.link.active {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
</style>
|