文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Vue怎么使用vue-pdf实现PDF文件预览

2023-07-05 12:37

关注

这篇文章主要介绍了Vue怎么使用vue-pdf实现PDF文件预览的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Vue怎么使用vue-pdf实现PDF文件预览文章都会有所收获,下面我们一起来看看吧。

先看下效果 

Vue怎么使用vue-pdf实现PDF文件预览

安装

npm install vue-pdf

页面按需引入并注册

import Pdf from "vue-pdf"export default {  components: { Pdf }}

完整代码

<template>  <div class="global">    <div class="preview">      <el-button type="success" @click="isShow = true">开始预览</el-button>    </div>    <div class="pdfContainer" v-if="isShow">      <div class="button">        <el-button type="success" @click="prev()">上一页</el-button>        <el-button type="success" @click="next()">下一页</el-button>        <el-button type="success" @click="scaleD()">放大</el-button>        <el-button type="success" @click="scaleX()">缩小</el-button>        <el-button type="success" @click="clockwise()">顺时针</el-button>        <el-button type="success" @click="antiClockwise()">逆时针</el-button>      </div>      <div class="pdf">        <pdf          ref="pdf"          :src="src"          :page="currentPage"          :rotate="pageRotate"          @num-pages="pageCount = $event"          @page-loaded="currentPage = $event"          @loaded="loadPdfHandler"        ></pdf>      </div>      <div class="page">        <span class="pageNum">{{ currentPage }}</span>        <span class="pageNum">/</span>        <span class="pageNum">{{ pageCount }}</span>      </div>    </div>  </div></template><script>import Pdf from "vue-pdf";export default {  data() {    return {      src: "http://storage.xuetangx.com/public_assets/xuetangx/PDF/PlayerAPI_v1.0.6.pdf",  // pdf的路径 实际项目后端返回      currentPage: 0, // pdf文件页码      pageCount: 0, // pdf文件总页数      scale: 100,  //  开始的时候默认和容器一样大即宽高都是100%      pageRotate: 0,  // 旋转角度      isShow: false    };  },  components: { Pdf },  mounted() {    console.log(Pdf, "Pdf----->>>");  },  methods: {    // pdf加载时    loadPdfHandler(e) {      this.currentPage = 1; // 加载的时候先加载第一页      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";    },    //  上一页    prev() {      if (this.currentPage > 1) {        this.currentPage--;      }    },    // 下一页    next() {      if (this.currentPage < this.pageCount) {        this.currentPage++;      }    },    //放大    scaleD() {      if(this.scale == 100) return this.$message.warning('已经是最大喽~~')      this.scale += 10;      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";    },    //缩小    scaleX() {      if(this.scale == 40) return this.$message.warning('已经是最小喽~~')      this.scale += -10;      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";    },    // 顺时针    clockwise() {      this.pageRotate += 90;    },    // 逆时针    antiClockwise() {      this.pageRotate -= 90;    },  },};</script><style scoped>.global {  width: 100%;  height: 100%;}.preview {  width: 100%;  height: 50px;} .pdfContainer {  width: 100%;  height: calc(100% - 50px);}.pdfContainer .button {  width: 100%;  height: 50px;  display: flex;  align-items: center;}.pdfContainer .pdf {  width: 100%;  height: calc(100% - 100px);  overflow-y: auto;}.pdfContainer .page {  width: 100%;  height: 50px;} .pageNum {  font-size: 28px;}</style>

关于“Vue怎么使用vue-pdf实现PDF文件预览”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Vue怎么使用vue-pdf实现PDF文件预览”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯