CristalT
11/22/2019 - 6:57 PM

Descarga de Archivos con Axios

await this.$axios({
    url: 'apiurl',
    method: 'POST',
    responseType: 'blob',
    data: payload
}).then(res => {
    const fileURL = URL.createObjectURL(res.data);
    window.open(fileURL);
})