-6
//config.js
sidebar:[

          {
              title: 'Group 1',
              path:'/foo/',
              collapsable: false,
              sidebarDepth: 1,
              children: [
                 '/guide/', 
                '/installation/',
                '/Tips & Trcks/' ]
          },

//我的文件夹结构

在此处输入图像描述

问题:我的侧边栏什么也没显示。

在此处输入图像描述

4

1 回答 1

0

这是解决方案

     sidebar: [
        '/',
        {
            title: 'Guide',
            collapsable: false,
            children: [ 
            ['/guide/Frontend','Frontend'],
            ['/guide/Backend' , 'Backend' ]

        },

解释:

 ['/guide/Frontend','Frontend'],

'/guide/Frontend'路径,'Frontend'(你可以随意命名)是你想在侧边栏中调用它,所以侧边栏标题不必以“绝对路径”格式读取。

在此处输入图像描述

于 2019-05-03T03:34:58.167 回答