赞
踩
问题: 我们在使用vue-print-nb实现页面打印时,有些dom元素是不需要打印出来的,我们可以点击打印按钮时,再打印之前来做些操作就可以实现需求了,具体代码如下
<button style="display:none" v-print="printObj" ref="printBtn">打印</button>
<el-button type="primary" @click="print">打 印</el-button>
// 打印
print() {
// 写自己的代码逻辑
this.$refs.printBtn.click();
},
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。