added (not yet working) code for login

This commit is contained in:
2019-03-14 17:13:24 +01:00
parent 18f22fdffa
commit 2cff1db5cb
17 changed files with 710 additions and 1 deletions

View File

@@ -1,9 +1,18 @@
import Vue from 'vue';
import Vuex from 'vuex';
import { alert } from './store/alert.module';
import { account } from './store/account.module';
import { users } from './store/users.module';
Vue.use(Vuex);
export default new Vuex.Store({
modules: {
alert,
account,
users,
},
state: {
},