2021-01-03 14:25:43 +05:30
|
|
|
import createState from 'ee_else_ce/vuex_shared/modules/members/state';
|
|
|
|
import * as actions from './actions';
|
|
|
|
import mutations from './mutations';
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
export default initialState => ({
|
|
|
|
namespaced: true,
|
|
|
|
state: createState(initialState),
|
2021-01-03 14:25:43 +05:30
|
|
|
actions,
|
|
|
|
mutations,
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|