Axios(url, {
method: 'GET',
responseType: 'blob'
})
.then((res) => {
const file = new Blob(
[res.data],
{type: 'application/pdf'}
);
const fileUrl = URL.createObjectURL(file);
window.open(fileUrl, "_blank");
})
.catch((e) => {
this.showNotification("error", "Отсутвствует квартирный лист");
});