docs: vuepress构建文档

This commit is contained in:
2024-03-28 10:50:19 +08:00
parent 7db0617a5b
commit 47f00c48c5
38 changed files with 1102 additions and 0 deletions

25
docs/.vuepress/sidebar.ts Normal file
View File

@ -0,0 +1,25 @@
import { sidebar } from "vuepress-theme-hope";
export default sidebar({
"/": [
"",
{
text: "案例",
icon: "laptop-code",
prefix: "demo/",
link: "demo/",
children: "structure",
},
{
text: "文档",
icon: "book",
prefix: "guide/",
children: "structure",
},
{
text: "幻灯片",
icon: "person-chalkboard",
link: "https://plugin-md-enhance.vuejs.press/zh/guide/content/revealjs/demo.html",
},
],
});