ulivz / vt

🖼️ A "Post-VuePress Era" Documentation Theme (Deprecation Warning: For a next-gen SSG, please check out Rspress.)
https://vt.insx.dev
MIT License
137 stars 10 forks source link

自定义Toc.vue的标题 #85

Open 0xlau opened 1 year ago

0xlau commented 1 year ago

允许自定义Toc.vue的标题

ulivz commented 1 year ago

Thanks for your contribution, could you help write a documentation for this feature?

vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated
vuepress-docs ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 29, 2023 at 4:37AM (UTC)
0xlau commented 1 year ago

image

Here are two ways to modify the toc title:

  1. Declare with Frontmatter:
    ---
    tocTitle: ON THIS PAGE
    ---
  2. Via the themeConfig property
    // .vuepress/config.js
    module.exports = {
    theme: "vt",
    themeConfig: {
    tocTitle: "ON THIS PAGE"
    },
    };