The document is only used for theme display, please go to the official site for the latest Vuepress documentation
active-header-links
This plugin will listen to page scroll event. When the page scrolls to a certain header anchor, this plugin will change the route hash to that header anchor if there is a corresponding header link.
This plugin is mainly used to develop themes, and has been integrated into the default theme. You won't need to use it directly in most cases.
Options
headerLinkSelector
Type:
stringDefault:
'a.sidebar-item'Details:
Selector of header link.
If a header anchor does not have a corresponding header link, this plugin won't change the route hash to that anchor when scrolling to it.
headerAnchorSelector
Type:
stringDefault:
'.header-anchor'Details:
Selector of header anchor.
You don't need to specify this option unless you have changed the
permalinkClassoption of markdown-it-anchoropen in new window via markdown.anchor.Also see:
delay
Type:
numberDefault:
200Details:
The delay of the debounced scroll event listener.
offset
Type:
numberDefault:
5Details:
Even if you click the link of the header anchor directly, the
scrollTopmight not be exactly equal tooffsetTopof the header anchor, so we add an offset to avoid the error.