diff --git a/docs/changelog.md b/docs/changelog.md index aa82f803..4374d407 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,6 +10,7 @@ comment: false editLink: false contributors: false changelog: false +search: false --- diff --git a/docs/contributing.md b/docs/contributing.md index 93ba6233..492f7646 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -8,6 +8,7 @@ readingTime: false editLink: false contributors: false changelog: false +search: false --- diff --git a/docs/demos.md b/docs/demos.md index 8c295ad8..8c81d1fd 100644 --- a/docs/demos.md +++ b/docs/demos.md @@ -10,6 +10,7 @@ draft: true externalLinkIcon: false contributors: false changelog: false +search: false docs: - name: VuePress Plume diff --git a/docs/sponsor.md b/docs/sponsor.md index cc4ecbe9..13a70733 100644 --- a/docs/sponsor.md +++ b/docs/sponsor.md @@ -7,6 +7,7 @@ aside: false readingTime: false contributors: false changelog: false +search: false --- :::important 作者的话 diff --git a/plugins/plugin-search/src/client/components/SearchBox.vue b/plugins/plugin-search/src/client/components/SearchBox.vue index 8fd288ce..700553fc 100644 --- a/plugins/plugin-search/src/client/components/SearchBox.vue +++ b/plugins/plugin-search/src/client/components/SearchBox.vue @@ -120,7 +120,7 @@ debouncedWatch( // Search results.value = index .search(filterTextValue) - .slice(0, 16) + // .slice(0, 16) .map((r) => { r.titles = r.titles?.filter(Boolean) || [] return r diff --git a/plugins/plugin-search/src/client/components/SearchButton.vue b/plugins/plugin-search/src/client/components/SearchButton.vue index 4555e4b0..cbc3a3b9 100644 --- a/plugins/plugin-search/src/client/components/SearchButton.vue +++ b/plugins/plugin-search/src/client/components/SearchButton.vue @@ -13,12 +13,7 @@ const locale = useLocale(toRef(props.locales))