[TIL] Vuex: how to commit a mutation for a specific namespaced module

TIL how to execute a Vuex mutation inside a namespaced module, from object Store.

This can be particularly useful to initialize state when using jest:

const store = createStore();

store.commit("AuthModule/setInitialData", initialData);