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

17 lines
256 B
JavaScript
Raw Normal View History

2021-06-27 17:44:38 +02:00
import actions from './actions';
import getters from './getters';
import mutations from './mutations';
export default {
namespaced: true,
state() {
return {
2021-07-28 20:51:47 +02:00
lastFetch: null,
coaches: []
2021-06-27 17:45:50 +02:00
};
2021-06-27 17:44:38 +02:00
},
actions,
getters,
mutations
};