Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
feat(highlight): add Highlight component to the InstantSearch plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrutjes committed Apr 4, 2017
1 parent f411394 commit 993fa51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/vue-instantsearch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"dependencies": {
"vue-instantsearch-store": "*",
"vue-instantsearch-highlight": "*",
"vue-instantsearch-input": "*",
"vue-instantsearch-results": "*",
"vue-instantsearch-stats": "*",
Expand Down
4 changes: 4 additions & 0 deletions packages/vue-instantsearch/src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import AisStore from 'vue-instantsearch-store'
import AisHighlight from 'vue-instantsearch-highlight'
import AisInput from 'vue-instantsearch-input'
import AisResults from 'vue-instantsearch-results'
import AisStats from 'vue-instantsearch-stats'
Expand All @@ -15,6 +16,7 @@ import AisPoweredBy from 'vue-instantsearch-powered-by'

const InstantSearch = {
AisStore,
AisHighlight,
AisInput,
AisResults,
AisStats,
Expand All @@ -31,6 +33,7 @@ const InstantSearch = {

install (Vue) {
Vue.component('ais-store', AisStore)
Vue.component('ais-highlight', AisHighlight)
Vue.component('ais-input', AisInput)
Vue.component('ais-results', AisResults)
Vue.component('ais-stats', AisStats)
Expand All @@ -57,6 +60,7 @@ export default InstantSearch

export {
AisStore,
AisHighlight,
AisInput,
AisResults,
AisStats,
Expand Down

0 comments on commit 993fa51

Please sign in to comment.