mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export const zhSidebar = sidebar({
|
|
"/": [
|
|
"",
|
|
{
|
|
icon: "workingDirectory",
|
|
text: "项目介绍",
|
|
link: "project.md"
|
|
},
|
|
{
|
|
icon: "network",
|
|
text: "国际化支持",
|
|
link: "i18n.md"
|
|
},
|
|
{
|
|
icon: "play",
|
|
text: "快速开始",
|
|
link: "quick-start.md"
|
|
},
|
|
{
|
|
icon: "read",
|
|
text: "功能指南",
|
|
prefix: "features/",
|
|
children: "structure"
|
|
},
|
|
{
|
|
icon: "advance",
|
|
text: "高级",
|
|
prefix: "advanced/",
|
|
children: [
|
|
"FAQ.md",
|
|
"exceptions.md",
|
|
"known-issue.md",
|
|
"mihoyo-risk-tip.md",
|
|
"artifact-rating-rules.md",
|
|
"get-stoken-cookie-from-the-third-party.md",
|
|
"Gacha-system-and-export-principal.md",
|
|
"uninstall.md"
|
|
]
|
|
},
|
|
{
|
|
icon: "article",
|
|
text: "声明和公告",
|
|
prefix: "statements/",
|
|
children: "structure"
|
|
}
|
|
],
|
|
});
|