suppose that two modules an and b are defined in vuex, and how can action in SET_USER,a be called if there is a mutations method in b?
I try to directly
store.commit("SET_USER", user);
but the prompt cannot find this mutations,. It seems that the commit in actions adds the prefix of "current module name /" by default?
I want to use store, more freely and how can I introduce store in my custom helper library?