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

53 lines
1.2 KiB
TypeScript

import { navbar } from "vuepress-theme-hope";
export const zhNavbar = navbar([
"/zh/",
"/zh/demo/",
{
text: "文章",
icon: "pen-to-square",
prefix: "/zh/posts/",
children: [
{
text: "苹果",
icon: "pen-to-square",
prefix: "apple/",
children: [
{ text: "苹果1", icon: "pen-to-square", link: "1" },
{ text: "苹果2", icon: "pen-to-square", link: "2" },
"3",
"4",
],
},
{
text: "香蕉",
icon: "pen-to-square",
prefix: "banana/",
children: [
{
text: "香蕉 1",
icon: "pen-to-square",
link: "1",
},
{
text: "香蕉 2",
icon: "pen-to-square",
link: "2",
},
"3",
"4",
],
},
{ text: "樱桃", icon: "pen-to-square", link: "cherry" },
{ text: "火龙果", icon: "pen-to-square", link: "dragonfruit" },
"tomato",
"strawberry",
],
},
{
text: "V2 文檔",
icon: "book",
link: "https://theme-hope.vuejs.press/zh/",
},
]);