mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 16:47:24 +08:00
26 lines
570 B
TypeScript
26 lines
570 B
TypeScript
import {sidebar} from "vuepress-theme-hope";
|
|
|
|
export default sidebar({
|
|
"/": [
|
|
"",
|
|
{
|
|
text: "安装及部署",
|
|
icon: "laptop-code",
|
|
prefix: "deployment/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "使用及开发",
|
|
icon: "book",
|
|
prefix: "usage/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "资源及插件商店",
|
|
icon: "store",
|
|
prefix: "store/",
|
|
children: "structure",
|
|
}
|
|
],
|
|
});
|