import * as actions from './actions'; import * as getters from './getters'; import mutations from './mutations'; import state from './state'; export default { namespaced: true, state: state(), actions, mutations, getters, };