27 lines
531 B
TypeScript
27 lines
531 B
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export default sidebar({
|
|
"/": [
|
|
"",
|
|
{
|
|
text: "译文",
|
|
icon: "laptop-code",
|
|
prefix: "processed/",
|
|
link: "processed/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "原文",
|
|
icon: "book",
|
|
prefix: "origin/",
|
|
link: "origin/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "幻灯片",
|
|
icon: "person-chalkboard",
|
|
link: "https://ecosystem.vuejs.press/zh/plugins/markdown/revealjs/demo.html",
|
|
},
|
|
],
|
|
});
|