vue-pdf

Load pdf from server and embed in Vue app

守給你的承諾、 提交于 2021-02-10 18:38:27
问题 I have an api which returns a pdf file. I'm trying to display this in vue.js and found the vue-pdf component which looks like it should do the job. Here's the project on github I'm able to call the API and get the binary response but I've not been able to convert the binary data into something which the vue-pdf library can display. The documentation for the :src prop is here My vue code is below with a few of the failed attempts commented out. <template> <pdf :src="pdfsrc"></pdf> </template>