mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
41 lines
798 B
Vue
41 lines
798 B
Vue
|
<script lang="ts" setup>
|
||
|
import type { DefaultTheme } from 'vitepress/theme'
|
||
|
import { inject } from 'vue'
|
||
|
import VPLink from './VPLink.vue'
|
||
|
|
||
|
defineProps<{
|
||
|
item: DefaultTheme.NavItemWithLink
|
||
|
}>()
|
||
|
|
||
|
const closeScreen = inject('close-screen') as () => void
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<VPLink
|
||
|
class="VPNavScreenMenuLink"
|
||
|
:href="item.link"
|
||
|
:target="item.target"
|
||
|
:rel="item.rel"
|
||
|
@click="closeScreen"
|
||
|
>
|
||
|
{{ item.text }}
|
||
|
</VPLink>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.VPNavScreenMenuLink {
|
||
|
display: block;
|
||
|
border-bottom: 1px solid var(--vp-c-divider);
|
||
|
padding: 12px 0 11px;
|
||
|
line-height: 24px;
|
||
|
font-size: 14px;
|
||
|
font-weight: 500;
|
||
|
color: var(--vp-c-text-1);
|
||
|
transition: border-color 0.25s, color 0.25s;
|
||
|
}
|
||
|
|
||
|
.VPNavScreenMenuLink:hover {
|
||
|
color: var(--vp-c-brand-1);
|
||
|
}
|
||
|
</style>
|