43 lines
1.0 KiB
TypeScript
43 lines
1.0 KiB
TypeScript
![]() |
import {sidebar} from "vuepress-theme-hope";
|
||
|
|
||
|
export default sidebar({
|
||
|
"/demo/": [
|
||
|
{
|
||
|
text: "如何使用",
|
||
|
icon: "laptop-code",
|
||
|
link: "demo/",
|
||
|
children: "structure",
|
||
|
},
|
||
|
{
|
||
|
text: "幻灯片",
|
||
|
icon: "person-chalkboard",
|
||
|
link: "https://ecosystem.vuejs.press/zh/plugins/markdown/revealjs/demo.html",
|
||
|
},
|
||
|
],
|
||
|
"/posts/": [
|
||
|
{
|
||
|
text: "文章",
|
||
|
icon: "book",
|
||
|
prefix: "posts/",
|
||
|
children: "structure",
|
||
|
},
|
||
|
],
|
||
|
"/programming/": [
|
||
|
{
|
||
|
text: "Java",
|
||
|
collapsible: true,
|
||
|
icon: "mdi:language-java",
|
||
|
prefix: "java/",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Framework",
|
||
|
icon: "simple-icons:framework",
|
||
|
collapsible: true,
|
||
|
prefix: "framework/",
|
||
|
children: "structure",
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
});
|