Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/plugins/search/index.js
Original file line numberDiff line numberDiff line change
@@ -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 DownExpand 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