blog/src/.vuepress/sidebar.ts

63 lines
1.7 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: "ic:baseline-question-answer",
collapsible: true,
prefix: "AI试题/",
children: "structure",
},
2025-05-07 17:52:05 +08:00
]
},
{
text: "Linux",
collapsible: true,
expanded: true,
icon: "devicon:linux",
prefix: "linux/",
children: [
{
text: "凝思",
icon: "simple-icons:linux",
collapsible: true,
prefix: "凝思/",
children: "structure",
},
]
},
{
text: "Docker",
// 可折叠
collapsible: true,
//是否展开
expanded: false,
icon: "devicon:docker",
prefix: "docker/",
children: "structure",
2025-05-07 17:52:05 +08:00
}
]
});