recipe/packages/create/template/blog/config/en/sidebar.ts

27 lines
535 B
TypeScript
Raw Permalink Normal View History

2024-08-18 19:16:25 +08:00
import { sidebar } from "vuepress-theme-hope";
export default sidebar({
"/": [
"",
{
text: "Demo",
icon: "laptop-code",
prefix: "demo/",
link: "demo/",
children: "structure",
},
{
text: "Articles",
icon: "book",
prefix: "posts/",
children: "structure",
},
"intro",
{
text: "Slides",
icon: "person-chalkboard",
link: "https://plugin-md-enhance.vuejs.press/guide/content/revealjs/demo.html",
},
],
});