import {sidebar} from "vuepress-theme-hope"; export default sidebar({ "/demo/": [ { text: "如何使用", icon: "laptop-code", link: "demo/", children: "structure", }, { text: "幻灯片", icon: "person-chalkboard", link: "https://ecosystem.vuejs.press/zh/plugins/markdown/revealjs/demo.html", }, ], "/posts/": [ { text: "文章", icon: "book", prefix: "posts/", children: "structure", }, ], "/programming/": [ { text: "Java", collapsible: true, icon: "mdi:language-java", prefix: "java/", children: [ { text: "框架", icon: "simple-icons:framework", collapsible: true, prefix: "框架/", children: "structure", }, { text: "工具箱", icon: "simple-icons:framework", collapsible: true, prefix: "工具箱/", children: "structure", } ] } ] });