You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
import { defineSidebarConfig } from "vuepress-theme-hope"; |
|
|
|
export const zh = defineSidebarConfig({ |
|
"/": [ |
|
"", |
|
"home", |
|
"slide", |
|
{ |
|
text: "如何使用", |
|
icon: "creative", |
|
prefix: "guide/", |
|
children: ["", "page", "markdown", "disable", "encrypt"], |
|
}, |
|
{ |
|
text: "文章", |
|
icon: "note", |
|
prefix: "posts/", |
|
children: [ |
|
{ |
|
text: "文章 1-4", |
|
icon: "note", |
|
collapsable: true, |
|
prefix: "article/", |
|
children: ["article1", "article2", "article3", "article4"], |
|
}, |
|
{ |
|
text: "文章 5-12", |
|
icon: "note", |
|
children: [ |
|
{ |
|
text: "文章 5-8", |
|
icon: "note", |
|
collapsable: true, |
|
prefix: "article/", |
|
children: ["article5", "article6", "article7", "article8"], |
|
}, |
|
{ |
|
text: "文章 9-12", |
|
icon: "note", |
|
children: ["article9", "article10", "article11", "article12"], |
|
}, |
|
], |
|
}, |
|
], |
|
}, |
|
], |
|
});
|
|
|