Vuepress 多个侧边栏不显示所有项目
Posted
技术标签:
【中文标题】Vuepress 多个侧边栏不显示所有项目【英文标题】:Vuepress multiple sidebar don't show all items 【发布时间】:2020-10-19 19:53:05 【问题描述】:我正在学习 vuepress,但我无法配置 sidbar。
说明
关注docs I replicated the multiple-sidebar configuration没有成功。
仅显示第一条路径。我在做什么?
我的配置 js:
module.exports =
title: "Jhonatan Morais",
description: "Welcome to my documentation site",
editLinks: true,
smoothScroll: true,
themeConfig:
sidebar:
"/foo/": ["", "one"],
"/bar/": ["", "three"],
// fallback
"/": ["" /* / */],
,
,
postcss:
plugins: [require("autoprefixer"), require("tailwindcss")("./tailwind.js")],
,
;
我的项目组织
我的渲染结果来自 yarn docs:dev
其他一些细节
如果我通过 url 浏览页面,它们就在那里
这是我的系统信息:
环境信息:
System:
OS: Windows
CPU: (8) x64 Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
Binaries:
Node: 10.16.2 - C:\Users\JHONAT~1.MOR\AppData\Local\Temp\yarn--1593443655966-0.6783257365479927\node.CMD
Yarn: 1.22.4 - C:\Users\JHONAT~1.MOR\AppData\Local\Temp\yarn--1593443655966-0.6783257365479927\yarn.CMD
npm: 6.9.0 - C:\Program Files\nodejs\npm.CMD
npmPackages:
@vuepress/core: 1.5.2
@vuepress/theme-default: 1.5.2
vuepress: ^1.5.2 => 1.5.2
npmGlobalPackages:
vuepress: Not Found
【问题讨论】:
【参考方案1】:我相信这是按设计工作的。当路线以/foo/
开头时,您只会看到/foo/
侧边栏。因此,在您转到以/bar/
开头的路线/页面之前,您不会看到/bar/
侧边栏。如果您想在为每条路线显示的单个侧边栏中将链接组合在一起,您可能需要使用Sidebar Groups。
【讨论】:
哦。现在我明白了。谢谢,我从文档解释中看不到这一点。以上是关于Vuepress 多个侧边栏不显示所有项目的主要内容,如果未能解决你的问题,请参考以下文章
如何以正确的方式在 Nuxt 项目中添加 Vuepress?