Call an action from within another action

后端 未结 5 816
一个人的身影
一个人的身影 2021-01-30 05:03

I have the following setup for my actions:

get1: ({commit}) => {
  //things
  this.get2(); //this is my question!
},
get         


        
5条回答
  •  忘了有多久
    2021-01-30 05:11

    export actions = {
      GET_DATA (context) {
         // do stuff
         context.dispatch('GET_MORE_DATA');
      },
    
      GET_MORE_DATA (context) {
        // do more stuff
      }
    }
    

提交回复
热议问题