Skip to main content
vuepress-theme-hope

vuepress-plugin-auto-catalog

Generation and displaying catalog

GuideConfig

Adding Catalog with one line

Simply add catalog with out-of-box AutoCatalog component

Generate catalog page automatically

Generate catalog page for every folder

How to use

Install

pnpm
pnpm add -D vuepress-plugin-auto-catalog

Usage

TS
import { defineUserConfig } from "vuepress";
import { autoCatalogPlugin } from "vuepress-plugin-auto-catalog";

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