Created
November 2, 2018 17:11
-
-
Save vertcitron/39b2a38eea19e0c09b389d91b6f5f8b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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