mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export const zhSidebar = sidebar({
|
|
"/": [
|
|
"",
|
|
{
|
|
icon: "workingDirectory",
|
|
text: "项目介绍",
|
|
link: "project.md"
|
|
},
|
|
{
|
|
icon: "play",
|
|
text: "快速开始",
|
|
link: "quick-start.md"
|
|
},
|
|
{
|
|
icon: "read",
|
|
text: "功能指南",
|
|
prefix: "features/",
|
|
children: [
|
|
"mhy-account-switch" ,
|
|
"game-launcher" ,
|
|
"wish-export" ,
|
|
"daily-notes" ,
|
|
"achievements" ,
|
|
"character-data" ,
|
|
"develop-plan" ,
|
|
"hutao-API" ,
|
|
"character-wiki" ,
|
|
"weapon-wiki" ,
|
|
"hutao-settings" ,
|
|
],
|
|
},
|
|
{
|
|
icon: "ask",
|
|
text: "常见问题",
|
|
prefix: "FAQ/",
|
|
children: [
|
|
"most-frequent-questions" ,
|
|
"mihoyo-risk-tip" ,
|
|
"artifact-rating-rules" ,
|
|
"Gacha-system-and-export-principal" ,
|
|
"HttpRequestException" ,
|
|
],
|
|
},
|
|
{
|
|
icon: "article",
|
|
text: "声明和公告",
|
|
prefix: "statements/",
|
|
children: [
|
|
"privacy-statement" ,
|
|
"bug-report" ,
|
|
],
|
|
}
|
|
],
|
|
});
|