recipe/packages/create/template/docs/config/en/navbar.ts

31 lines
638 B
TypeScript
Raw Normal View History

2024-08-18 19:16:25 +08:00
import { navbar } from "vuepress-theme-hope";
export default navbar([
"/",
"/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/",
},
]);