1.安装插件:yarn add pdfh5 或者 npm install --save pdfh5
2.使用pdfh5插件预览pdf
<template>
<div class="m-pdf">
<div ></div>
</div>
</template>
<script>
import Pdfh5 from 'pdfh5'
import 'pdfh5/css/'
export default {
name: 'Index',
data () {
return {
pdfh5: null,
pdfUrl: 'pdf文件地址...'//注:如果路径不生效可将文件放在public/static下 用/static/引入
}
},
mounted () {
// pdfh5实例化时传两个参数:selector选择器,options配置项参数,会返回一个pdfh5实例对象,可以用来操作pdf,监听相关事件
// pdfh5 = new Pdfh5(selector, options) goto初始到第几页,logo设置每一页pdf上的水印
this.pdfh5 = new Pdfh5('#pdf', { pdfurl: , goto: 1, logo: {src: require('../../assets/image/'), x: 420, y: 700, width: 120, height: 120} })
// 监听pdf准备开始渲染,此时可以拿到pdf总页数
this.('ready', function () {
('总页数:' + )
})
// 监听pdf加载完成事件,加载失败、渲染成功都会触发
this.('complete', (status, msg, time) => {
('状态:' + status + ',信息:' + msg + ',耗时:' + time + '毫秒')
})
}
}
</script>
<style lang="less">
.m-pdf { // 保证pdf区域铺满整个屏幕
// 方法1:使用vw和vh视窗单位,1vw=视窗宽度的1%;1vh=视窗高度的1%
width: 100vw;
height: 100vh;
// 方法2:使用fixed定位
// position: fixed;
// top: 0;
// bottom: 0;
// right: 0;
// left: 0;
}
</style>