您的位置:首页 > 汽车 > 时评 > 长沙 建网站_如何制作网页模板_大连百度关键词优化_2023广东又开始疫情了吗

长沙 建网站_如何制作网页模板_大连百度关键词优化_2023广东又开始疫情了吗

2024/11/19 1:53:28 来源:https://blog.csdn.net/qq_61950936/article/details/143501746  浏览:    关键词:长沙 建网站_如何制作网页模板_大连百度关键词优化_2023广东又开始疫情了吗
长沙 建网站_如何制作网页模板_大连百度关键词优化_2023广东又开始疫情了吗

【vue-pdf】简单封装pdf预览组件

在这里插入图片描述

在Vue中使用vue-pdf来展示PDF文件,首先需要安装vue-pdf:

npm i vue-pdf

或者

yarn add vue-pdf

然后在Vue组件中引入并使用vue-pdf:

/**
* @描述: pdf预览组件
* @作者: xingyue
* @创建时间: 2024-11-05 14:27:19
*/
<template><a-layout><a-layout-header class="header"><div class="flex justify-between"><div><a-button @click.stop="clock" class="xf-margin-right-sm">顺时针</a-button><a-button @click.stop="counterClock" class="xf-margin-right-sm">逆时针</a-button><a-button @click="$refs.pdf.print()" icon="printer" class="xf-margin-right-sm">打印</a-button><!--          <a-button icon="plus" @click="enlarge">放大</a-button>--><!--          <a-button icon="minus" @click="reduce">缩小</a-button>--></div><div><a-button @click.stop="prePage">上一页</a-button><span class="text-white xf-margin-lr">{{ pageNum }}/{{ pageTotalNum }}</span><a-button @click.stop="nextPage">下一页</a-button></div></div></a-layout-header><a-layout-content style="max-height: calc(100vh - 275px);overflow: auto;"><pdf ref="pdf":src="pdfUrl":page="pageNum":rotate="pageRotate"@progress="loadedRatio = $event"@page-loaded="pageLoaded($event)"@num-pages="pageTotalNum=$event"@error="pdfError($event)"@link-clicked="page = $event"></pdf></a-layout-content></a-layout>
</template><script lang="ts">
import {Vue, Component, Prop, Watch,
} from 'vue-property-decorator';import pdf from 'vue-pdf';@Component({name: 'GPdfPreview',components: { pdf },
})
export default class GPdfPreview extends Vue {@Prop({type: String,default: '',}) pdfUrl: string | undefined;pageNum = 1;pageTotalNum = 1;pageRotate = 0;// 加载进度 dloadedRatio = 0;curPageNum = 0;// 缩放系数// scale = 100;prePage() {let p = this.pageNum;p = p > 1 ? p - 1 : this.pageTotalNum;this.pageNum = p;}nextPage() {let p = this.pageNum;p = p < this.pageTotalNum ? p + 1 : 1;this.pageNum = p;}clock() {this.pageRotate += 90;}counterClock() {this.pageRotate -= 90;}pageLoaded(e) {this.curPageNum = e;}pdfError(error) {console.error(error);}// // 放大// enlarge() {//   this.scale += 5;//   // this.$refs.wrapper.$el.style.transform = "scale(" + this.scale + ")";//   debugger;//   this.$refs.pdf.$el.style.width = `${parseInt(this.scale)}%`;// }//// // 缩小// reduce() {//   if (this.scale == 100) {//     return;//   }//   this.scale += -5;//   this.$refs.pdf.$el.style.width = `${parseInt(this.scale)}%`;// }
}
</script><style lang="less"></style>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com