mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
35 lines
669 B
Vue
35 lines
669 B
Vue
|
<script lang="ts" setup>
|
||
|
import type { DefaultTheme } from 'vitepress/theme'
|
||
|
import VPNavScreenMenuGroupLink from './VPNavScreenMenuGroupLink.vue'
|
||
|
|
||
|
defineProps<{
|
||
|
text?: string
|
||
|
items: DefaultTheme.NavItemWithLink[]
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="VPNavScreenMenuGroupSection">
|
||
|
<p v-if="text" class="title">{{ text }}</p>
|
||
|
<VPNavScreenMenuGroupLink
|
||
|
v-for="item in items"
|
||
|
:key="item.text"
|
||
|
:item="item"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.VPNavScreenMenuGroupSection {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
line-height: 32px;
|
||
|
font-size: 13px;
|
||
|
font-weight: 700;
|
||
|
color: var(--vp-c-text-2);
|
||
|
transition: color 0.25s;
|
||
|
}
|
||
|
</style>
|