blog/src/.vuepress/sidebar.ts

37 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({
"/programming/": [
{
text: "Java",
collapsible: true,
2025-05-08 17:47:04 +08:00
expanded: true,
2025-05-07 17:52:05 +08:00
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: "工具箱",
2025-05-08 17:47:04 +08:00
icon: "mdi:tools",
2025-05-07 22:37:21 +08:00
collapsible: true,
prefix: "工具箱/",
2025-05-07 17:52:05 +08:00
children: "structure",
},
{
text: "试题",
icon: "mdi:language-java",
collapsible: true,
prefix: "AI试题/",
children: "structure",
},
2025-05-07 17:52:05 +08:00
]
}
]
});