forked from bot/app
26 lines
502 B
TypeScript
26 lines
502 B
TypeScript
|
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",
|
||
|
},
|
||
|
],
|
||
|
});
|