Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

vuex call action from another action

actions:{ 
  get1: ({ commit, dispatch }) => {
    dispatch('get2');
  },
  get2: ({commit}) => {
    //things
  },
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #vuex #call #action #action
ADD COMMENT
Topic
Name
3+4 =