axios.get(
url,
{responseType: 'blob'}
).then((response) => {
const a = document.createElement("a");
a.href = URL.createObjectURL(response.data);
a.download = fileName;
a.click()
a.remove()
setTimeout(() => window.URL.revokeObjectURL(url), 100)
})