recipe/packages/create/template/docs/config/multi/navbar/zh.ts
2024-08-18 19:16:25 +08:00

31 lines
660 B
TypeScript

import { navbar } from "vuepress-theme-hope";
export const zhNavbar = navbar([
"/zh/",
"/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/",
},
]);