The document is only used for theme display, please go to the official site for the latest Vuepress documentation
search
Provide local search to your documentation site.
TIP
Default theme will add search box to the navbar once you configure this plugin correctly.
This plugin may not be used directly in other themes, so you'd better refer to the documentation of your theme for more details.
Local Search Index
This plugin will generate search index from your pages locally, and load the search index file when users enter your site. In other words, this is a lightweight built-in search which does not require any external requests.
However, when your site has a large number of pages, the size of search index file would be very large, which could slow down the page loading speed. In this case, we recommend you to use a more professional solution - docsearch.
Options
locales
Type:
Record<string, { placeholder: string }>
Details:
The text of the search box in different locales.
If this option is not specified, it will fallback to default text.
Example:
module.exports = {
plugins: [
[
'@vuepress/plugin-search',
{
locales: {
'/': {
placeholder: 'Search',
},
'/zh/': {
placeholder: '搜索',
},
},
},
],
],
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- Also see:
hotKeys
Type:
string[]
Default:
['s', '/']
Details:
Specify the event.keyopen in new window of the hotkeys.
When hotkeys are pressed, the search box input will be focused.
Set to an empty array to disable hotkeys.
maxSuggestions
Type:
number
Default:
5
Details:
Specify the maximum number of search results.
isSearchable
Type:
(page: Page) => boolean
Default:
() => true
Details:
A function to determine whether a page should be included in the search index.
- Return
true
to include the page. - Return
false
to exclude the page.
- Return
Example:
module.exports = {
plugins: [
[
'@vuepress/plugin-search',
{
// exclude the homepage
isSearchable: (page) => page.path !== '/',
},
],
],
}
2
3
4
5
6
7
8
9
10
11
12
getExtraFields
Type:
(page: Page) => string[]
Default:
() => []
Details:
A function to add extra fields to the search index of a page.
By default, this plugin will use page title and headers as the search index. This option could help you to add more searchable fields.
Example:
module.exports = {
plugins: [
[
'@vuepress/plugin-search',
{
// allow searching the `tags` frontmatter
getExtraFields: (page) => page.frontmatter.tags ?? [],
},
],
],
}
2
3
4
5
6
7
8
9
10
11
12
Styles
You can customize the style of the search box via CSS variables:
File not found
Components
SearchBox
Details:
This plugin will register a
<SearchBox />
component globally, and you can use it without any props.Put this component to where you want to place the search box. For example, default theme puts this component to the end of the navbar.
TIP
This component is mainly used for theme development. You don't need to use it directly in most cases.