blog/src/.vuepress/sidebar.ts

43 lines
1.0 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: [
{
text: "Framework",
icon: "simple-icons:framework",
collapsible: true,
prefix: "framework/",
children: "structure",
}
]
}
]
});