This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/store/modules/auth/mutations.js

11 lines
215 B
JavaScript

export default {
setUser(state, payload) {
state.token = payload.token;
state.userId = payload.userId;
state.didAutoLogout = false;
},
setAutoLogout(state) {
state.didAutoLogout = true;
}
};