move auth into vuex state

This commit is contained in:
2017-02-20 11:27:23 -07:00
parent 3d082f63f5
commit 0b313f10e1
7 changed files with 49 additions and 33 deletions

16
src/store/index.js Normal file
View File

@@ -0,0 +1,16 @@
import Vue from 'vue';
import Vuex from 'vuex';
import authentication from './authentication';
Vue.use(Vuex);
const store = new Vuex.Store({
state: {
},
modules: {
authentication,
},
});
export default store;