mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1017 B
49 lines
1017 B
<script lang="ts" setup generic="T extends (DefaultTheme.NavItemComponent | DefaultTheme.NavItemChildren | DefaultTheme.NavItemWithLink)">
|
|
import type { DefaultTheme } from 'vitepress/theme'
|
|
import VPMenuLink from './VPMenuLink.vue'
|
|
|
|
defineProps<{
|
|
text?: string
|
|
items: T[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPMenuGroup">
|
|
<p v-if="text" class="title">{{ text }}</p>
|
|
|
|
<template v-for="item in items" :key="JSON.stringify(item)">
|
|
<VPMenuLink v-if="'link' in item" :item />
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPMenuGroup {
|
|
margin: 12px -12px 0;
|
|
border-top: 1px solid var(--vp-c-divider);
|
|
padding: 12px 12px 0;
|
|
}
|
|
|
|
.VPMenuGroup:first-child {
|
|
margin-top: 0;
|
|
border-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.VPMenuGroup + .VPMenuGroup {
|
|
margin-top: 12px;
|
|
border-top: 1px solid var(--vp-c-divider);
|
|
}
|
|
|
|
.title {
|
|
padding: 0 12px;
|
|
line-height: 32px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--vp-c-text-2);
|
|
white-space: nowrap;
|
|
transition: color 0.25s;
|
|
}
|
|
</style>
|