vue 打印html

Posted mxyr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 打印html相关的知识,希望对你有一定的参考价值。

1、https://github.com/xyl66/vuePlugs_printjs从这个路径下载print.js。放到你的代码中

2、我是放到我本地一个js文件中。

技术图片

3、引入当前文件

//打印插件
import Print from ‘./utils/print‘
Vue.use(Print) // 注册

4、页面应用

<template>
    <section ref="print" style="max-height: 1000px;width: 800px;margin: 0 auto;">
        <p>我的打印的内容</p>
    </section>
</template>

<script>
    this.$print(this.$refs.print)
</script>

把需要打印的东西放入这个标签中就可以了。

当内容中有不需要打印的东西时可以这样

<p class="no-print">不要打印</p>

 

以上是关于vue 打印html的主要内容,如果未能解决你的问题,请参考以下文章

前端vue项目实现单页打印功能

vue 解决打印预览格式错乱

Vue.js 打印原始 html 并调用组件方法

VUE打印功能

Vue中使用froala富文本编辑器制作打印模板 + print.js 打印

使用window.print()打印指定的一个vue 组件