Eylemlerim için aşağıdaki kuruluma sahibim:
get1: ({commit}) => {
//things
this.get2(); //this is my question!
},
get2: ({commit}) => {
//things
},
Bir eylemi diğerinden çağırabilmek istiyorum, bu nedenle bu örnekte get2()
içeriden arayabilmek istiyorum get1()
. Bu mümkün mü ve eğer öyleyse, bunu nasıl yapabilirim?
then()
?