I have the following setup for my actions:
get1: ({commit}) => { //things this.get2(); //this is my question! }, get
export actions = { GET_DATA (context) { // do stuff context.dispatch('GET_MORE_DATA'); }, GET_MORE_DATA (context) { // do more stuff } }