mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
34 lines
669 B
Vue
34 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>
|