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/index.js

17 lines
261 B
JavaScript
Raw Normal View History

2021-07-28 22:16:20 +02:00
import actions from './actions';
import getters from './getters';
import mutations from './mutations';
export default {
state() {
return {
2021-07-28 22:40:49 +02:00
userId: null,
token: null,
2021-07-29 18:06:59 +02:00
didAutoLogout: false
2021-07-28 22:16:20 +02:00
};
},
actions,
getters,
mutations
};