ulivz / vt

🖼️ A "Post-VuePress Era" Documentation Theme (Deprecation Warning: For a next-gen SSG, please check out Rspress.)
https://vt.insx.dev
MIT License
137 stars 10 forks source link

Feature Request: Sidebar Nav Links #103

Closed ulivz closed 10 months ago

ulivz commented 10 months ago

Motivation

The top navbar of a complex website may be extremely complicated, this results in insufficient space for the top navbar, so we want to introduce an sidebar-embedded navbar, which can help us complete the "overall switching" ability in the Sidebar.

Basic Example

Introduce sidebarNav config:

    sidebarNav: [
      {
        when: ["/guide/"],
        items: [
          { text: "Guide", link: "/guide/getting-started.html" },
          { text: "Migration", link: "/guide/migration.html" },
        ],
      },
    ],

Which will help us render:

image