mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
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",
|
|
},
|
|
],
|
|
});
|