0 votes
in VueJS by
What is the default namespace behavior in vuex?

1 Answer

0 votes
by

By default, actions, mutations and getters inside modules are still registered under the global namespace. Because of that multiple modules react to the same mutation/action type.

...