2025-07-10 21:28:26 +08:00
|
|
|
import { sidebar } from "vuepress-theme-hope";
|
2025-05-07 17:52:05 +08:00
|
|
|
|
|
|
|
export default sidebar({
|
|
|
|
"/programming/": [
|
|
|
|
{
|
|
|
|
text: "Java",
|
|
|
|
collapsible: true,
|
2025-07-14 17:50:12 +08:00
|
|
|
expanded: false,
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:language-java", // 这个还是合适的
|
2025-05-07 17:52:05 +08:00
|
|
|
prefix: "java/",
|
|
|
|
children: [
|
|
|
|
{
|
2025-05-07 22:37:21 +08:00
|
|
|
text: "框架",
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:code-braces", // 更适合框架的图标
|
2025-05-07 17:52:05 +08:00
|
|
|
collapsible: true,
|
2025-05-07 22:37:21 +08:00
|
|
|
prefix: "框架/",
|
|
|
|
children: "structure",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "工具箱",
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:toolbox", // 更适合工具箱的图标
|
2025-05-07 22:37:21 +08:00
|
|
|
collapsible: true,
|
|
|
|
prefix: "工具箱/",
|
2025-05-07 17:52:05 +08:00
|
|
|
children: "structure",
|
2025-05-22 20:35:25 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "试题",
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:comment-question", // 更适合试题的图标
|
2025-05-22 20:35:25 +08:00
|
|
|
collapsible: true,
|
|
|
|
prefix: "AI试题/",
|
|
|
|
children: "structure",
|
|
|
|
},
|
2025-05-07 17:52:05 +08:00
|
|
|
]
|
2025-05-22 22:38:16 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Linux",
|
|
|
|
collapsible: true,
|
2025-07-14 17:50:12 +08:00
|
|
|
expanded: false,
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:linux", // 这个仍然适用
|
2025-05-22 22:38:16 +08:00
|
|
|
prefix: "linux/",
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
text: "凝思",
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:linux", // 还是适合Linux的图标
|
2025-05-22 22:38:16 +08:00
|
|
|
collapsible: true,
|
|
|
|
prefix: "凝思/",
|
|
|
|
children: "structure",
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Docker",
|
|
|
|
collapsible: true,
|
2025-05-23 10:46:25 +08:00
|
|
|
expanded: false,
|
2025-07-10 21:28:26 +08:00
|
|
|
icon: "mdi:docker", // 这个仍然适合Docker
|
2025-05-22 22:38:16 +08:00
|
|
|
prefix: "docker/",
|
|
|
|
children: "structure",
|
2025-05-07 17:52:05 +08:00
|
|
|
}
|
2025-07-10 21:28:26 +08:00
|
|
|
],
|
|
|
|
"/work/": [
|
|
|
|
{
|
|
|
|
text: "日志",
|
|
|
|
collapsible: true,
|
|
|
|
expanded: false,
|
|
|
|
icon: "mdi:file-document", // 更适合日志的图标
|
|
|
|
prefix: "log/",
|
|
|
|
children: "structure",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "常用",
|
|
|
|
icon: "mdi:file", // 更通用的文件图标
|
|
|
|
link: "/work/常用.md",
|
|
|
|
}
|
2025-05-07 17:52:05 +08:00
|
|
|
]
|
|
|
|
});
|