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