Skip to content

Instantly share code, notes, and snippets.

@fridzema
Created February 8, 2019 13:04
Show Gist options
  • Save fridzema/85138b1dd5d863a0972661ed2ae9123b to your computer and use it in GitHub Desktop.
Save fridzema/85138b1dd5d863a0972661ed2ae9123b to your computer and use it in GitHub Desktop.
axios({
url: 'http://localhost/download.pdf',
method: 'GET',
responseType: 'blob',
}).then((response) => {
window.location = window.URL.createObjectURL(new Blob([response.data]));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment