Skip to content

Instantly share code, notes, and snippets.

@vertcitron
Created November 2, 2018 17:11
Show Gist options
  • Save vertcitron/39b2a38eea19e0c09b389d91b6f5f8b0 to your computer and use it in GitHub Desktop.
Save vertcitron/39b2a38eea19e0c09b389d91b6f5f8b0 to your computer and use it in GitHub Desktop.
/** VUEX store definition file for todo list app **/
import Vue from 'vue'
import Vuex from 'vuex'
import userModule from './userModule'
import todosModule from './todosModule'
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
userModule,
todosModule
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment