|
@@ -1,6 +1,6 @@
|
|
|
import type { SidebarOptions } from "@vuepress/theme-default";
|
|
|
|
|
|
-export const sidebarEn: SidebarOptions = {
|
|
|
+export const sidebarEn = {
|
|
|
"/docs/": [
|
|
|
{
|
|
|
text: "Introduction",
|
|
@@ -8,6 +8,7 @@ export const sidebarEn: SidebarOptions = {
|
|
|
},
|
|
|
{
|
|
|
text: "Routes",
|
|
|
+ link: "/docs/routes/README.md",
|
|
|
children: [
|
|
|
"/docs/routes/README.md",
|
|
|
"/docs/routes/search.md",
|
|
@@ -20,59 +21,4 @@ export const sidebarEn: SidebarOptions = {
|
|
|
link: "/docs/try-it.md",
|
|
|
},
|
|
|
],
|
|
|
- /*'/advanced/': [
|
|
|
- {
|
|
|
- text: 'Advanced',
|
|
|
- children: [
|
|
|
- '/advanced/architecture.md',
|
|
|
- '/advanced/plugin.md',
|
|
|
- '/advanced/theme.md',
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- text: 'Cookbook',
|
|
|
- children: [
|
|
|
- '/advanced/cookbook/README.md',
|
|
|
- '/advanced/cookbook/usage-of-client-config.md',
|
|
|
- '/advanced/cookbook/adding-extra-pages.md',
|
|
|
- '/advanced/cookbook/making-a-theme-extendable.md',
|
|
|
- '/advanced/cookbook/passing-data-to-client-code.md',
|
|
|
- '/advanced/cookbook/markdown-and-vue-sfc.md',
|
|
|
- '/advanced/cookbook/resolving-routes.md',
|
|
|
- ],
|
|
|
- },
|
|
|
- ],
|
|
|
- '/reference/': [
|
|
|
- {
|
|
|
- text: 'Core',
|
|
|
- collapsible: true,
|
|
|
- children: [
|
|
|
- '/reference/cli.md',
|
|
|
- '/reference/config.md',
|
|
|
- '/reference/frontmatter.md',
|
|
|
- '/reference/components.md',
|
|
|
- '/reference/plugin-api.md',
|
|
|
- '/reference/theme-api.md',
|
|
|
- '/reference/client-api.md',
|
|
|
- '/reference/node-api.md',
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- text: 'Bundlers',
|
|
|
- children: ['/reference/bundler/vite.md', '/reference/bundler/webpack.md'],
|
|
|
- },
|
|
|
- {
|
|
|
- text: 'Ecosystem',
|
|
|
- children: [
|
|
|
- {
|
|
|
- text: 'Default Theme',
|
|
|
- link: 'https://ecosystem.vuejs.press/themes/default/',
|
|
|
- },
|
|
|
- {
|
|
|
- text: 'Plugins',
|
|
|
- link: 'https://ecosystem.vuejs.press/plugins/',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ],*/
|
|
|
-};
|
|
|
+} satisfies SidebarOptions;
|