VUE 打印
Posted qaakd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE 打印相关的知识,希望对你有一定的参考价值。
插件下载地址(免费):https://download.csdn.net/download/qaakd/20722161
1.在main.js文件里加上:
import Print from '@/store/print'
Vue.use(Print) // 注册在线打印功能插件
2.页面中调用:
<template>
<section ref="print">
打印内容
<div class="no-print">不要打印我</div>
</section>
</template>
this.$print(this.$refs.print) // 使用
以上是关于VUE 打印的主要内容,如果未能解决你的问题,请参考以下文章