VUE使用print.js进行局部打印

Posted 無厌

tags:

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

首先再项目中的main.js中的引入print.js

https://wws.lanzous.com/iVVhadhkusd

import Print from @/utils/print‘ //根据自己文件的位置配置地址
Vue.use(Print)

单页面局部打印

<template>
  <div style="width:100%;" ref="printarea">
     <img style="width:100%;" :src="imgPath"/>
  </div>
    <el-button @click="printimg()">打印</el-button>
</template>
<script>
    export default {
        data () {
            return {
                imgPath: ‘‘
            }
        },
        methods: {
            printimg () {
               this.$print(this.$refs.printarea) 
            }
        }
    } 
</script> 

 

以上是关于VUE使用print.js进行局部打印的主要内容,如果未能解决你的问题,请参考以下文章

vue 打印html

vue 打印

vue 打印

Vue组件之全局组件与局部组件

Vue组件之全局组件与局部组件

vue 打印 vue-print-nb