上一页
当前位置:   article > 正文

vue之使用 vue-pdf插件_vue- pdf最新版本

vue- pdf最新版本

vue之使用 vue-pdf插件

  • 下载:yarn add pdfjs-dist@2.5.207 -S 与 yarn add vue-pdf@4.2.0 -S
  • 注意点:下载最新版本 4.3.0时,使用会报错
  • 在这里插入图片描述

使用

html
    currentPage- {{ currentPage}}
    <button @click="change1">上一页</button>
    <button @click="change2">下一页</button>
    <pdf :src="file.url" :page="currentPage" @num-pages="pageCount=$event" @page-loaded="currentPage=$event">
    </pdf>

js
import pdf from "vue-pdf";
export default {
  name: 'CheckDocument',
  components: {
    pdf,
  },
  data() {
    return {
      file: {
        url: `${window.location.origin}/test1.pdf`
      },
      currentPage: 1,
      pageCount: 1,
    };
  },

    // 改变PDF页码,val传过来区分上一页下一页的值,0上一页,1下一页
    change1() {
      if (this.currentPage > 1) {
        this.currentPage--
      }
    },
    change2() {
      if (this.currentPage < this.pageCount) {
        this.currentPage++
      }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/172528
推荐阅读
相关标签
  

闽ICP备14008679号