vuepress小课堂006--添加左侧栏

// .vuepress/config.js
module.exports = {
  themeConfig: {
    sidebar: [
      '/',
      '/page-a',
      ['/page-b', 'Explicit link text']
    ]
  }
}

没啥好说的
需要注意的是
1 写完文章后需要更新一遍 左侧栏才生效
2 自动检测标题层级数并显示出来 默认为1
如:

# 命令行接口

## 基本用法

### aaa
位置测试001

#### bbb
位置测试002

##### ccc
位置测试003

## ee
位置测试004

显示为
vuepress小课堂006--添加左侧栏_第1张图片

如果在md中上面添加

---
sidebarDepth: 2
---

重新编译 效果为:
vuepress小课堂006--添加左侧栏_第2张图片

最大的深度为 2

https://billyyyyy3320.com/zh/2019/09/08/dive-into-vuepress-with-plugin-apis/
这篇文章写的不错 有机会细看

你可能感兴趣的:(vuepress)