recipe/packages/create/template/blog/config/multi/sidebar/zh.ts
2024-08-18 19:16:25 +08:00

27 lines
560 B
TypeScript

import { sidebar } from "vuepress-theme-hope";
export const zhSidebar = sidebar({
"/zh/": [
"",
{
text: "如何使用",
icon: "laptop-code",
prefix: "demo/",
link: "demo/",
children: "structure",
},
{
text: "文章",
icon: "book",
prefix: "posts/",
children: "structure",
},
"intro",
{
text: "投影片",
icon: "person-chalkboard",
link: "https://plugin-md-enhance.vuejs.press/zh/guide/content/revealjs/demo.html",
},
],
});