fix(cli): docsearch anchor not work

This commit is contained in:
chenjiahan 2020-09-26 22:44:40 +08:00
parent 0252710155
commit a872a070e4

View File

@ -29,6 +29,17 @@ export default {
if (this.searchConfig) {
this.docsearchInstance = window.docsearch({
...this.searchConfig,
transformData: (hits) => {
hits.forEach((hit) => {
if (hit.anchor) {
hit.url = hit.url + '#' + hit.anchor;
hit.anchor = null;
}
});
if (this.searchConfig.transformData) {
this.searchConfig.transformData(hits);
}
},
inputSelector: '.van-doc-search',
algoliaOptions: {
facetFilters: [`lang:${this.lang}`],