mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
27 lines
584 B
TypeScript
27 lines
584 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/",
|
|
link: "/store/",
|
|
children: "structure",
|
|
}
|
|
],
|
|
});
|