import getters from './getters'
import actions from './actions'
import mutations from './mutations'
store.create({})
.getter(getters)
.action(actions)
.mutation(mutations)
But have to fall back to this
// getter.ts
import store from './store'
export default store.getter(....)
// action.ts
import store from './getter'
export default store.action(....)
// mutation.ts
import store from './action'
export default store.mutaiton(...)
This means you cannot do this
But have to fall back to this