VueX 스토어의 VueJ 오류 처리 모범 사례 Vue에서의 오류 처리 방법에 문제가 있습니다.현재 VueX의 try/catch 블록을 사용하여 비동기 콜을 발신하고 있습니다.캐치 블록은 글로벌 토스트에 오류를 추가하는 작업을 처리합니다.아주 잘 되고 있어요. async add({ dispatch }, form) { try { await firebase.add(form) dispatch('getUpdatedList') } catch (error) { // Use the global error handle to handle the error dispatch('error', error) } }, error ({ dispatch, commit }, errorMessage) { console.log(errorM..