I have the following setup for my actions:
get1: ({commit}) => { //things this.get2(); //this is my question! }, get
You have access to the dispatch method in the object passed in the first parameter:
dispatch
get1: ({ commit, dispatch }) => { dispatch('get2'); },
This is covered in the documentation.