Axios ajax, Ajax 요청 시 로드 표시 현재 vue 앱과 acios를 사용하여 Im을 만들고 있습니다.로딩 아이콘은 전화를 걸기 전에 표시하고 그 후에 숨깁니다. 모든 콜에 show/hide loading 아이콘을 쓰지 않아도 되는 글로벌한 방법이 있는지 궁금합니다. 지금 가지고 있는 코드는 다음과 같습니다. context.dispatch('loading', true, {root: true}); axios.post(url,data).then((response) => { // some code context.dispatch('loading', false, {root: true}); }).catch(function (error) { // some code context.dispatch('loadi..