Skip to content

Instantly share code, notes, and snippets.

@nanotroy
Created August 28, 2019 15:50
Show Gist options
  • Save nanotroy/37450b4a00c6c7b7614dff75c3f20a17 to your computer and use it in GitHub Desktop.
Save nanotroy/37450b4a00c6c7b7614dff75c3f20a17 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
searchResults: []
},
mutations: {
setSearchResults(state, payload) {
state.searchResults = payload;
}
},
actions: {
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment