2019-11-10 03:20:22 +00:00
|
|
|
import state from './state';
|
|
|
|
import mutations from './mutations';
|
|
|
|
import actions from './actions';
|
|
|
|
|
|
|
|
function initActorsStore(store, router) {
|
2020-05-14 02:26:05 +00:00
|
|
|
return {
|
|
|
|
state,
|
|
|
|
mutations,
|
|
|
|
actions: actions(store, router),
|
|
|
|
};
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default initActorsStore;
|