在VUE中实现打印

1.安装

npm install vue-print-nb --save

2.在mian.js中引入

import Print from 'vue-print-nb'
Vue.use(Print); 

3.在页面中使用

<el-dialog title="打印页面" :visible.sync="dialogVisible" width="40%" :loading="loading" size='small' @open="dialogOpen">
     <div style="width:500px">
       <img  id="printTest" :src="printImg" style="width:100%;  height:auto;" >
     </div>  
    <span slot="footer" class="dialog-footer">
      <el-button @click="dialogVisible = false">取 消</el-button>
      <el-button type="primary" @click="print" v-print="'#printTest'">去打印</el-button>
    </span>
  </el-dialog>

 在图中的
id="printTest"
v-print="'#printTest'"
写上就能打印了~

转载于:https://www.cnblogs.com/JiAyInNnNn/p/11064703.html

猜你喜欢

转载自blog.csdn.net/weixin_33845881/article/details/93543326
今日推荐