vue2.0使用vue-pdf(简单版本)

news/2025/1/11 7:00:50/

1.引入vue-pdf(vue-pdf版本:4.3.0,vue版本:2.6.14)

npm install --save vue-pdf

2.引入本地文件(放public文件夹下用于测试。后期用接口返回的地址)

111.pdf:自己随意生成的一个

3.页面按需引入

<script>
import Pdf from "vue-pdf"
export default {components: { Pdf }
}
</script>

4.完整代码
pdfShow.vue

<template><div><div class="tools"><el-button type="primary" @click.stop="prePage">上一页</el-button><el-button type="primary" @click.stop="nextPage">下一页</el-button><el-button type="primary">{{ currentPage }}/{{ pageCount }}</el-button><el-button type="primary" @click.stop="scaleD">放大</el-button><el-button type="primary" @click.stop="scaleX">缩小</el-button></div><div class="pdf"><!-- page当前显示的页数 progress当前页面加载进度,范围0-1,等于1时代表当前页完全加载完成,page-loaded页面加载成功的回调函数 num-pages总页数 --><pdf ref="pdf":src="url":page="currentPage"@num-pages="pageCount=$event"@page-loaded="currentPage = $event"@loaded="loadPdfHandler"@progress="loadedRatio = $event"></pdf></div></div>
</template><script>
import pdf from 'vue-pdf'
export default {name: 'HelloWorld',components:{pdf,},props: {msg: String},data(){return {// url:"http://221.2.195.94:8072/group1/M00/00/15/DAoMrmT3RvqAc0ifAKewIsM7DXk324.pdf",url:"111.pdf",currentPage:0,//pdf页码pageCount:0,//pdf文件总页数scale:100,//开始的时候默认和容器一样大,即宽高都是1000%navPage:1,//跳转的页数}},mounted(){},methods:{//上一页函数prePage(){if (this.currentPage > 1) {this.currentPage--;}else{this.$message.warning("已经是第一页")}},//下一页函数nextPage(){if (this.currentPage <this.pageCount) {this.currentPage++;}else{this.$message.warning("已经是最后一页")}},//pdf加载loadPdfHandler(){this.currentPage = 1; // 加载的时候先加载第一页this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";},//放大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) + "%";},}
}
</script>
<style scoped>
</style>

App.vue

<template><div id="app"><!-- <img alt="Vue logo" src="./assets/logo.png"> --><pdfShow style="width: 400px;height: 500px;border: 1px solid #ccc;overflow-y: scroll;" /></div>
</template><script>
import pdfShow from './components/pdfShow.vue'export default {name: 'App',components: {pdfShow}
}
</script><style>
#app {font-family: Avenir, Helvetica, Arial, sans-serif;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-align: center;color: #2c3e50;margin-top: 60px;
}
</style>

main.js

import Vue from 'vue'
import App from './App.vue'// 引入elementui
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';Vue.use(ElementUI);Vue.config.productionTip = falsenew Vue({render: h => h(App),}).$mount('#app')

http://www.ppmy.cn/news/1270911.html

相关文章

美容店预约小程序搭建指南

随着互联网的发展&#xff0c;越来越多的传统行业开始尝试将业务与互联网相结合&#xff0c;以提供更加便捷、高效的服务。美容行业也不例外。本文将通过使用第三方制作平台&#xff0c;如乔拓云网&#xff0c;指导您如何搭建一个美观实用的美容店预约小程序&#xff0c;帮助您…

用提问的方式来学习:冯·诺伊曼体系结构与操作系统OS

学习冯诺伊曼体系结构之前&#xff0c;我们要本着两个问题来学习&#xff1a; 什么是冯诺伊曼体系结构&#xff1f;为什么要有冯诺伊曼体系结构&#xff1f; 一、冯诺伊曼体系结构 1. 什么是冯诺伊曼体系结构&#xff1f; 那我们就先来回答一下什么是冯诺伊曼体系结构&#x…

(SpringBoot)第十一章:SpringBoot 统一功能处理(AOP实战)

文章目录 一:用户登录权限验证(1)传统用户登录验证(2)使用原生Spring AOP进行用户登录验证(3)Spring 拦截器A:自定义拦截器B:拦截器实现原理①:概述②:源码分析(4)补充:统一访问前缀的添加二:统一异常处理三:统一数据返回格式Spring AOP使Spring Boot统一功能处…

Vue3el-upload 实现在组建之外提供一个上传按钮

有这么一个需求&#xff0c;在使用el-upload组件进行文件上传的时候&#xff0c;除了组件默认提供的上传按钮&#xff0c;还要在列表的最前面自定义的加一个上传按钮&#xff0c;点击这个自定义的上传按钮要实现和点击默认的上传按钮同样的全套的上传流程 默认的&#xff1a; …

STP笔记总结

STP --- 生成树协议 STP&#xff08;Spanning Tree Protocol&#xff0c;生成树协议&#xff09;是根据 IEEE802.1D标准建立的&#xff0c;用于在局域网中消除数据链路层环路的协议。运行STP协议的设备通过彼此交互信息发现网络中的环路&#xff0c;并有选择地对某些端口进行阻…

转载:TableView性能优化

转载&#xff1a;TableView性能优化 原文链接&#xff1a;https://juejin.cn/post/6955731915672387592 tableView性能优化 Cell重用、标识重用 使用 static 修饰重用标识名称能够保证这个标识只会创建一次&#xff0c;提高性能。接着调用dequeueReusableCellWithIdentifie…

你知道为什么要加 final 关键字了吗?

​ ​嗨&#xff0c;大家好&#xff0c;欢迎来到程序猿漠然公众号&#xff0c;我是漠然。 在Java编程中&#xff0c;我们经常会遇到需要使用final关键字的情况。那么&#xff0c;为什么要使用final关键字呢&#xff1f;它到底有什么作用&#xff1f;本文将从以下几个方面来详细…

K8S(七)—污点、容忍

目录 污点、容忍污点&#xff08;Taints&#xff09;&#xff1a;容忍&#xff08;Tolerations&#xff09;&#xff1a;如何一起使用污点和容忍&#xff1a;操作符&#xff08;Equal、Exists&#xff09;例子基于污点的驱逐基于节点状态添加污点 污点、容忍 官网地址&#xf…