Skip to content

自动生成侧边栏

介绍

源码点我

因为vuepress官方并没有提供自动生成侧边栏的插件,所以就自己写了一个供大伙使用。

Let's Go!

安装

sh
# npm
npm i vuepress-plugin-handle-sidebar -D

# yarn
yarn add vuepress-plugin-handle-sidebar -D

使用

js
// .vuepress -> config.js
module.exports = {
  // ...
  plugins: [
    ['vuepress-plugin-auto-sidebar']
  ]
  // ...
}

参数

属性名类型描述默认值
collapsableboolean标题是否可折叠false
sidebarDepthnumber内容标题深度3
titleModestring标题样式lowerCase
handleSidebarfunction侧边栏处理-

titleMode

属性值描述
lowerCase小写
upperCase大写
firstUpperCase首字母大写
firstLowerCase首字母小写
js
// .vuepress -> config.js
module.exports = {
  // ...
  plugins: [
    ['vuepress-plugin-auto-sidebar',
      {
        collapsable: false, // 标题是否可折叠
        sidebarDepth: 3, // 标题深度
        titleMode: 'lowerCase', // 标题样式 可选值lowerCase、upperCase、firstUpperCase、firstLowerCase
        handleSidebar(sidebar){
          console.log(sidebar);
          // ... 编辑操作
          return sidebar
        }
      }
    ]
  ]
  // ...
}