vuepress2-auto-sidebar
v1.0.3
Published
vuepress 2 侧边栏生成
Downloads
9
Readme
Vuepress 2 侧边栏生成
1
npm i vuepress2-auto-sidebar
2
.vuepress/config.js
const path = require("path"); // <<<<
const { default: Sidebar } = require("vuepress2-auto-sidebar");
const vuepressPtah = path.resolve(__dirname, ".."); // <<<<
module.exports = {
// ..
themeConfig: {
logo: "/logo/moon.svg",
sidebar: new Sidebar(vuepressPtah).run(), // <<<<
},
// ..
};
🌚 因为能力问题,现在用起来要复杂一些。。。
3
在想要 生成侧边栏的 目录下,新增一个 chapter.js
比如:
+ .vuepress
+ js
+ 1basic
- 文章a.md
- 文章b.md
+ 2object
- emmm.md
+ 3array
- emmm.md
+ chapter.js <<<<<<
readme.md