mobilizon/js/src/store/index.js
Thomas Citharel 92d2045735 end
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-09 17:52:26 +01:00

22 lines
385 B
JavaScript

import { LOGIN_USER, LOGOUT_USER, SAVE_USER } from './mutation-types';
const state = {
isLogged: !!localStorage.getItem('token'),
user: false,
};
const mutations = {
[LOGIN_USER](state) {
state.isLogged = true;
},
[LOGOUT_USER](state) {
state.isLogged = false;
},
[SAVE_USER](state, user) {
state.user = user;
},
};
export default { state, mutations };