blog/src/.vuepress/sidebar.ts

50 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-05-07 17:52:05 +08:00
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: [
{
2025-05-07 22:37:21 +08:00
text: "框架",
2025-05-07 17:52:05 +08:00
icon: "simple-icons:framework",
collapsible: true,
2025-05-07 22:37:21 +08:00
prefix: "框架/",
children: "structure",
},
{
text: "工具箱",
icon: "simple-icons:framework",
collapsible: true,
prefix: "工具箱/",
2025-05-07 17:52:05 +08:00
children: "structure",
}
]
}
]
});