We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad023c3 + 9f4f79e commit de431cbCopy full SHA for de431cb
src/plugins/search/index.js
@@ -1,5 +1,5 @@
1
/* eslint-disable no-unused-vars */
2
-import { init as initComponet, update as updateComponent } from './component';
+import { init as initComponent, update as updateComponent } from './component';
3
import { init as initSearch } from './search';
4
5
const CONFIG = {
@@ -32,7 +32,7 @@ const install = function(hook, vm) {
32
const isAuto = CONFIG.paths === 'auto';
33
34
hook.mounted(_ => {
35
- initComponet(CONFIG, vm);
+ initComponent(CONFIG, vm);
36
!isAuto && initSearch(CONFIG, vm);
37
});
38
hook.doneEach(_ => {
0 commit comments