This commit is contained in:
2018-11-05 19:10:31 +00:00
parent 8f0df88164
commit 0663712235
5 changed files with 127 additions and 4 deletions

View File

@@ -4,7 +4,13 @@ import Vuex from "vuex";
Vue.use(Vuex);
export default new Vuex.Store({
state: {},
state: {
authenticated: false,
mockAccount: {
username: "manager",
password: "letmein"
}
},
mutations: {},
actions: {}
});