Answers for "commit on another action store vue"

9

vuex call action from another action

actions:{ 
  get1: ({ commit, dispatch }) => {
    dispatch('get2');
  },
  get2: ({commit}) => {
    //things
  },
}
Posted by: Guest on June-13-2020

Code answers related to "commit on another action store vue"

Browse Popular Code Answers by Language