Skip to content

Commit

Permalink
fix typo (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Jul 23, 2020
1 parent b869019 commit 9f4f79e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/search/index.js
@@ -1,5 +1,5 @@
/* eslint-disable no-unused-vars */
import { init as initComponet, update as updateComponent } from './component';
import { init as initComponent, update as updateComponent } from './component';
import { init as initSearch } from './search';

const CONFIG = {
Expand Down Expand Up @@ -32,7 +32,7 @@ const install = function(hook, vm) {
const isAuto = CONFIG.paths === 'auto';

hook.mounted(_ => {
initComponet(CONFIG, vm);
initComponent(CONFIG, vm);
!isAuto && initSearch(CONFIG, vm);
});
hook.doneEach(_ => {
Expand Down

1 comment on commit 9f4f79e

@vercel
Copy link

@vercel vercel bot commented on 9f4f79e Jul 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.