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