43 lines
819 B
TypeScript
43 lines
819 B
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export default sidebar({
|
|
"/": [
|
|
// "",
|
|
{
|
|
text: "综述",
|
|
icon: "folder-open",
|
|
prefix: "archives/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "笔记",
|
|
icon: "book",
|
|
prefix: "notes/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "随想",
|
|
icon: "paper-plane",
|
|
prefix: "diaries/",
|
|
children: [
|
|
{
|
|
text: "好耶,是女装",
|
|
icon: "images",
|
|
prefix: "dress/",
|
|
collapsible: true,
|
|
children: "structure"
|
|
},
|
|
{
|
|
text: "无病呻吟",
|
|
icon: "message",
|
|
prefix: "wbsy/",
|
|
collapsible: true,
|
|
children: "structure"
|
|
},
|
|
],
|
|
},
|
|
// "intro",
|
|
// "friends/"
|
|
],
|
|
});
|