[Vuejs]-Downloading byte array from Spring Boot to Vue frontend

0👍

With Axios, you need to specify in the request headers that the response type is a blob

Like so

Vue.axios.get(resource, { responseType: "blob" });

Pretty poor documentation on this.

Leave a comment