[Vuejs]-How to access module state inside store's getter?

2👍

The getters receive the state of the Store as a parameter, you should use that to return the needed property, something like:

getters: {
  identities => (state)=> state.names
👤zizzo

Leave a comment