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.
52 lines
1.2 KiB
52 lines
1.2 KiB
import { defineNavbarConfig } from "vuepress-theme-hope"; |
|
|
|
export const zh = defineNavbarConfig([ |
|
"/", |
|
"/home", |
|
{ text: "使用指南", icon: "creative", link: "/guide/" }, |
|
{ |
|
text: "博文", |
|
icon: "edit", |
|
prefix: "/posts/", |
|
children: [ |
|
{ |
|
text: "文章 1-4", |
|
icon: "edit", |
|
prefix: "article/", |
|
children: [ |
|
{ text: "文章 1", icon: "edit", link: "article1" }, |
|
{ text: "文章 2", icon: "edit", link: "article2" }, |
|
"article3", |
|
"article4", |
|
], |
|
}, |
|
{ |
|
text: "文章 5-12", |
|
icon: "edit", |
|
children: [ |
|
{ |
|
text: "文章 5", |
|
icon: "edit", |
|
link: "article/article5", |
|
}, |
|
{ |
|
text: "文章 6", |
|
icon: "edit", |
|
link: "article/article6", |
|
}, |
|
"article/article7", |
|
"article/article8", |
|
], |
|
}, |
|
{ text: "文章 9", icon: "edit", link: "article9" }, |
|
{ text: "文章 10", icon: "edit", link: "article10" }, |
|
"article11", |
|
"article12", |
|
], |
|
}, |
|
{ |
|
text: "主题文档", |
|
icon: "note", |
|
link: "https://vuepress-theme-hope.github.io/v2/zh/", |
|
}, |
|
]);
|
|
|