Skip to main content
vuepress-theme-hope

vuepress-plugin-auto-catalog

Generate Catalog pages for VuePress2

Guide 💡Config 🛠

Adding Catalog with one line

Simply add catalog with out-of-box AutoCatalog component

Generate catalog page automatically

Generate catalog page for every dir

How to use

Install

pnpm add -D vuepress-plugin-auto-catalog

Usage

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

export default {
  plugins: [
    autoCatalogPlugin({
      // your options
    }),
  ],
};