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