Skip to content

Commit 527aed8

Browse files
authored
fix(search/index.js): typo
1 parent b869019 commit 527aed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/search/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable no-unused-vars */
2-
import { init as initComponet, update as updateComponent } from './component';
2+
import { init as initComponent, update as updateComponent } from './component';
33
import { init as initSearch } from './search';
44

55
const CONFIG = {
@@ -32,7 +32,7 @@ const install = function(hook, vm) {
3232
const isAuto = CONFIG.paths === 'auto';
3333

3434
hook.mounted(_ => {
35-
initComponet(CONFIG, vm);
35+
initComponent(CONFIG, vm);
3636
!isAuto && initSearch(CONFIG, vm);
3737
});
3838
hook.doneEach(_ => {

0 commit comments

Comments
 (0)