<template> <div id="pdfId"></div> </template> <script> import Pdfh5 from 'pdfh5'; import "pdfh5/css/pdfh5.css" export default{ data(){ return { pafh5:null } }, mounted(){ this.showPdf() }, methods:{ showPdf(){ // 实例化 this.pafh5=new Pdfh5('#pdfId',{ pdfurl:'具体的pdf的url' }) } } } </script>
当前pdfh5插件的版本号为1.3.20
