vuepress-theme-hope

vuepress-plugin-auto-catalog

为 VuePress2 提供自动目录页生成

快速上手 💡配置 🛠

使用插件

安装

pnpm add -D vuepress-plugin-auto-catalog

使用

// .vuepress/config.ts
import { autoCatalogPlugin } from "vuepress-plugin-auto-catalog";

export default {
  plugins: [
    autoCatalogPlugin({
      //插件选项
    }),
  ],
};