32 lines
694 B
TypeScript
32 lines
694 B
TypeScript
import { navbar } from "vuepress-theme-hope";
|
|
|
|
export default navbar([
|
|
"/",
|
|
"/portfolio",
|
|
"/processed/",
|
|
// {
|
|
// text: "译文",
|
|
// icon: "lightbulb",
|
|
// prefix: "/processed/",
|
|
// children: [
|
|
// {
|
|
// text: "Bar",
|
|
// icon: "lightbulb",
|
|
// prefix: "bar/",
|
|
// children: ["baz", { text: "...", icon: "ellipsis", link: "" }],
|
|
// },
|
|
// {
|
|
// text: "Foo",
|
|
// icon: "lightbulb",
|
|
// prefix: "foo/",
|
|
// children: ["ray", { text: "...", icon: "ellipsis", link: "" }],
|
|
// },
|
|
// ],
|
|
// },
|
|
{
|
|
text: "V2 文档",
|
|
icon: "book",
|
|
link: "https://theme-hope.vuejs.press/zh/",
|
|
},
|
|
]);
|