我页面底部的错误导航(Vuepress)

Wrong navigation at the bottom of my page (Vuepress)

我目前正在开发一个 vuepress 单页应用程序来发布和 link 下载我自己的游戏。

为了在我的网站上导航,我只想使用本机侧边栏。侧边栏应该有主要主题,如 'News' 或 'Games' 以及它们自己的相应 .md 文件。在侧边栏 'Games' 然后应该折叠以显示我的游戏,它们本身是 .md 文件,而不仅仅是标题。到目前为止它看起来像这样:

为了实现这一点,我已将此部分添加到我的 config.js:

    sidebar: [
        {
            title: 'News',
            path: '/',
        },
        {
            title: 'Games',
            path: '/games.html',
            children: [
                {
                    title: 'Game1',
                    path: '/games/game1.md',
                }
            ]
        },           
    ]

如您所见,我已经为 'Games' 创建了 'games.md',并在其中存储了 'Game1' 的 'games1.md' 目录,即 child 'Games'.

现在我的问题是,当我在底部打开 'Game1' 时,它 link 变为 'News' 而不是 'Games':

我想要它,这样如果我在 'Game1' 上,在底部它 link 会让我 'Games' 而不是 'News'。

我该如何解决这个问题? Vuepress 是否适用于我的用例?

每页底部的链接名为prev-next-links in VuePress, you can manually overwrite those links for individual pages via Frontmatter

---
prev: ./some-other-page
next: false
---

你甚至可以在 VuePress 1.3.0 中将它们配置为外部链接

---
prev: true
next: https://vuepress.vuejs.org/
---