mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
26 lines
549 B
TypeScript
26 lines
549 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",
|
|
}
|
|
],
|
|
});
|