mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import type { DefaultTheme } from 'vitepress/theme'
|
|
import { useData } from '../composables/data'
|
|
import { isActive } from '../../shared'
|
|
import VPLink from './VPLink.vue'
|
|
|
|
defineProps<{
|
|
item: DefaultTheme.NavItemWithLink
|
|
}>()
|
|
|
|
const { page } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPMenuLink">
|
|
<VPLink
|
|
:class="{ active: isActive(page.relativePath, item.activeMatch || item.link, !!item.activeMatch) }"
|
|
:href="item.link"
|
|
:target="item.target"
|
|
:rel="item.rel"
|
|
>
|
|
{{ item.text }}
|
|
</VPLink>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPMenuGroup + .VPMenuLink {
|
|
margin: 12px -12px 0;
|
|
border-top: 1px solid var(--vp-c-divider);
|
|
padding: 12px 12px 0;
|
|
}
|
|
|
|
.link {
|
|
display: block;
|
|
border-radius: 6px;
|
|
padding: 0 12px;
|
|
line-height: 32px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--vp-c-text-1);
|
|
white-space: nowrap;
|
|
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>
|