We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
默认主题代码是:
isAlgoliaSearch () { const algolia = this.$themeLocaleConfig.algolia || this.$site.themeConfig.algolia || {} return algolia && algolia.apiKey && algolia.indexName }
但在html里面:
<AlgoliaSearchBox v-if="isAlgoliaSearch" :options="algolia" />
会报错无法找到options。 因此修改为:
algolia() { return ( this.$themeLocaleConfig.algolia || this.$site.themeConfig.algolia || {} ); }, isAlgoliaSearch() { return this.algolia && this.algolia.apiKey && this.algolia.indexName; }
ok!
The text was updated successfully, but these errors were encountered:
b19bd89
Thanks, fixed at b19bd89
Sorry, something went wrong.
No branches or pull requests
默认主题代码是:
但在html里面:
会报错无法找到options。
因此修改为:
ok!
The text was updated successfully, but these errors were encountered: