0👍
You could use axios interceptor as a hook:
axios.interceptors.request.use(function(response) {
response.url = response.url.toLowerCase();
return response;
});
- [Vuejs]-Full-Calendar Vue refetch-events error? nothing appears to happen
- [Vuejs]-Mocking Vue method external async call to test it
Source:stackexchange.com