forked from DebaucheryLibrarian/traxxx
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
|
import state from './state';
|
||
|
import mutations from './mutations';
|
||
|
import actions from './actions';
|
||
|
|
||
|
function initEntitiesStore(store, router) {
|
||
|
return {
|
||
|
state,
|
||
|
mutations,
|
||
|
actions: actions(store, router),
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default initEntitiesStore;
|