PDf预览组件封装--vue

通过pdfjs-dist讲pdf转为图片进行预览的方式
存在失真的问题

npm i pdfjs-dist -S




 >

使用

// 引入组件
import showPdf from '@/components/pdfView/index.vue'
//注册
components: { showPdf}


// 打开预览,传入pdf的完整路径
 this.$refs.showPdf.handleOpen(this.applyURL)

你可能感兴趣的:(PDf预览组件封装--vue)