在我的config.js
文件中,我创建了这个侧边栏
sidebar: {
'/docs/': [
'',
'gettingStarted',
'guides',
'media'
],
'/docs/gettingStarted/': [
'creatingFirstApplication',
'installing',
'understanding'
],
'/docs/gettingStarted/creatingFirstApplication': [
'setup'
],
'/docs/gettingStarted/installing': [
'installation'
],
'/docs/gettingStarted/understanding': [
'why',
'useCases',
'coreConcepts',
'architecture',
'gettingHelp'
],
'/docs/guides/': [
'firstApplication'
],
'/docs/media/': [
'downloads',
'onlineResources'
],
'/docs/media/downloads': [
'brochure'
],
'/docs/media/onlineResources': [
'articles',
'videos'
]
}
但我只能在构建页面时看到顶级降价文件。所以在这里你可以看到我的项目结构
仅在构建页面时README.md
, gettingStarted.md
, guides.md
, 并被media.md
渲染。
我该如何解决?
如果您需要更多信息,请告诉我!
所以这是当前状态
这是一个例子,展示了我想要实现的目标
我在这里找到了更多信息
https://vuepress.vuejs.org/theme/default-theme-config.html#multiple-sidebars
我试图扭转我的配置
sidebar: {
'/docs/gettingStarted/creatingFirstApplication': [
'setup'
],
'/docs/gettingStarted/installing': [
'installation'
],
'/docs/gettingStarted/understanding': [
'why',
'useCases',
'coreConcepts',
'architecture',
'gettingHelp'
],
'/docs/gettingStarted/': [
'creatingFirstApplication',
'installing',
'understanding'
],
'/docs/guides/': [
'firstApplication'
],
'/docs/media/downloads': [
'brochure'
],
'/docs/media/onlineResources': [
'articles',
'videos'
],
'/docs/media/': [
'downloads',
'onlineResources'
],
'/docs/': [
'',
'gettingStarted',
'guides',
'media'
]
}
但这没有帮助。
我创建了一个小型存储库,提供一个小型文档,每个目录有两页。
https://github.com/Garzec/VuePressTest
我希望这有帮助。