46 lines
990 B
Vue
46 lines
990 B
Vue
<script lang="ts" setup>
|
|
import type { ResolvedNavItemWithLink } from '../../../shared/index.js'
|
|
import VPIcon from '@theme/VPIcon.vue'
|
|
import VPLink from '@theme/VPLink.vue'
|
|
import { inject } from 'vue'
|
|
|
|
defineProps<{
|
|
item: ResolvedNavItemWithLink
|
|
}>()
|
|
|
|
const closeScreen = inject('close-screen') as () => void
|
|
</script>
|
|
|
|
<template>
|
|
<VPLink
|
|
class="vp-nav-screen-menu-link"
|
|
:href="item.link"
|
|
:target="item.target"
|
|
:rel="item.rel"
|
|
:no-icon="item.noIcon"
|
|
@click="closeScreen"
|
|
>
|
|
<VPIcon v-if="item.icon" :name="item.icon" />
|
|
<span v-html="item.text" />
|
|
</VPLink>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.vp-nav-screen-menu-link {
|
|
display: block;
|
|
padding: 12px 0 11px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: var(--vp-c-text-1);
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
|
transition:
|
|
border-color var(--vp-t-color),
|
|
color var(--vp-t-color);
|
|
}
|
|
|
|
.vp-nav-screen-menu-link:hover {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
</style>
|