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/coaches/mutations.js

12 lines
234 B
JavaScript
Raw Normal View History

2021-06-29 21:55:19 +02:00
export default {
registerCoach(state, payload) {
state.coaches.push(payload);
},
setCoaches(state, payload) {
state.coaches = payload;
2021-07-28 20:51:47 +02:00
},
setFetchTimestamp(state) {
state.lastFetch = new Date().getTime();
2021-06-29 21:55:19 +02:00
}
};