Guest User

Untitled

a guest
Nov 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. async downloadPdf() {
  2. let res = await this.$store.dispatch('pdf/getBase64String')
  3. let base64String = res.status === 'ok' ? res.data : ''
  4. this.downloadUrl = 'data:application/pdf;base64,' + base64String
  5. // downloadUrl bind href on a button in my page
  6. }
Add Comment
Please, Sign In to add comment