Skip to content

Instantly share code, notes, and snippets.

@CristalT
Created November 22, 2019 18:58
Show Gist options
  • Save CristalT/5aaafff7945296e2bc736d731f87b04f to your computer and use it in GitHub Desktop.
Save CristalT/5aaafff7945296e2bc736d731f87b04f to your computer and use it in GitHub Desktop.
await this.$axios({
url: 'apiurl',
method: 'POST',
responseType: 'blob',
data: payload
}).then(res => {
const fileURL = URL.createObjectURL(res.data);
window.open(fileURL);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment