import {sidebar} from "vuepress-theme-hope"; export default sidebar({ "/programming/": [ { text: "Java", collapsible: true, expanded: true, icon: "mdi:language-java", prefix: "java/", children: [ { text: "框架", icon: "simple-icons:framework", collapsible: true, prefix: "框架/", children: "structure", }, { text: "工具箱", icon: "mdi:tools", collapsible: true, prefix: "工具箱/", children: "structure", }, { text: "试题", icon: "ic:baseline-question-answer", collapsible: true, prefix: "AI试题/", children: "structure", }, ] }, { 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", } ] });