I've seen many times other devs using computed property names to define actions & mutations names, eg.
export const SOME_ACTION = 'someAction'
And then:
[SOME_ACTION]({ commit }) { ... }
Which in turn lets you dispatch actions using this neat way:
this.$store.dispatch(SOME_ACTION)
Kinda feels like NgRX, which I like. But what about Vuex namespaced modules? Is there any way to dispatch actions neatly, providing only the SOME_ACTION var?