vue中使用pdf最简单实用方法,亲测有效...

  1. 方式一 :使用 vueshowpdf 插件

npm install vueshowpdf -S
vue中使用pdf最简单实用方法,亲测有效..._第1张图片

export default {
name: “working-drawing”,
data() {
return {
src: ‘http://cdn.ylnhome.com/shangcheng/160645713428743.pdf’,
isshowpdf: false,

vue中使用pdf最简单实用方法,亲测有效..._第2张图片
components: {
vueshowpdf,

},
vue中使用pdf最简单实用方法,亲测有效..._第3张图片
closepdf () {
this.isshowpdf = false
this.big_pdf=false
},
pdferr (errurl) {
console.log(errurl)
},
openpdf (link) {
this.src=link
this.big_pdf=true
this.isshowpdf = true
},
vue中使用pdf最简单实用方法,亲测有效..._第4张图片
效果vue中使用pdf最简单实用方法,亲测有效..._第5张图片

你可能感兴趣的:(vue相关)