您可以使用 iframe 来显示 PDF 内容。
在您的模板中:
<iframe
v-if="pdf"
:src="`${pdf}`"
width="100%"
>
'This browser does not support PDFs. Please download the PDF to view it:' <a :href="`your link to the pdf`" >'Download PDF'</a>
</iframe>
在你的脚本中:
methods: {
previewPDFReport () {
this.pdf = null
axios.get('your link to the pdf')
.then(res => res.data)
.then(data => {
let blob = new Blob([data], { type: 'application/pdf' })
let url = window.URL.createObjectURL(blob)
this.pdf = url
})
}
}
慕斯王