VuePress 侧边栏不渲染

VuePress Sidebar does not render

//config.js
sidebar:[

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

//我的文件夹结构

问题:我的边栏什么都不显示。

这是解决方案

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

        },

解释:

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

'/guide/Frontend' 是路径,'Frontend'(你可以随意命名)是你想在侧边栏中调用它的名称,因此侧边栏标题不必是以 'absolute path' 格式阅读。