Levi Beach
Results
1
comments of
Levi Beach
I found it works if I set `responseType:'blob'` and then generate the PDF link like so: ``` const url = window.URL.createObjectURL(new Blob([response.data])) const link = document.createElement('a') link.href = url link.setAttribute('download',...