create-vuepress-theme-hope
Version:
Create vuepress-theme-hope demo project helper
32 lines (30 loc) • 649 B
text/typescript
import { navbar } from "vuepress-theme-hope";
export const zhNavbar = navbar([
"/zh/",
"/zh/portfolio",
"/zh/demo/",
{
text: "指南",
icon: "lightbulb",
prefix: "/zh/guide/",
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/",
},
]);