UNPKG

create-vuepress-theme-hope

Version:

Create vuepress-theme-hope demo project helper

32 lines (30 loc) 633 B
import { navbar } from "vuepress-theme-hope"; export const enNavbar = navbar([ "/", "/portfolio", "/demo/", { text: "Guide", icon: "lightbulb", prefix: "/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 Docs", icon: "book", link: "https://theme-hope.vuejs.press/", }, ]);