VuePress 侧边栏几种配置

module.exports = {
  title: "Fur",
  description: "小僧不才,略懂皮毛(Fur)",
  base: "/fur.baiqian.ltd/",
  dest: "dist",
  markdown: {
    lineNumbers: true,
    toc: {
      includeLevel: [1, 2, 3],
    },
  },
  themeConfig: {
    nav: [
      {
        text: "指南",
        link: "/guide/",
      },
      {
        text: "手册",
        link: "/handbook/",
      },
      {
        text: "工具",
        items: [{ text: "代码生成器", link: "/" }],
      },
    ],
    sidebar: {
      // "/handbook/": "auto",
      "/handbook/": [
        {
          title: "1. 框架指南",
          collapsable: true,
          path: "framework",
          // children: [
          //   { title: "内置功能", path: "/handbook/" },
          //   { title: "展望未来", path: "/handbook/" },
          // ],
        },
        // ["/handbook/framework", "1. 框架指南"],
        {
          title: "2. 功能特性",
          collapsable: true,
          children: [
            { title: "内置功能", path: "/handbook/" },
            { title: "展望未来", path: "/handbook/" },
          ],
        },
      ],
    },
    sidebarDepth: 3,
  },
};

猜你喜欢

转载自www.cnblogs.com/baiqian/p/13365895.html
今日推荐