[Vuejs]-Passing value to store getters Vue.js

1👍

You were pretty close:

new Vuex.Store({
  getters: {
    someMethod: (state) => (userid) => {
        console.log(userid);
      }
    };       
  }
})

Leave a comment