基于vue 的 打印
vue 打印
安装
cnpm install vue-print-nb --save
在src/main.js ,导入及注册
import Print from 'vue-print-nb'
Vue.use(Print);
基本使用
<div id="printContent" >
<p>要打印的内容</p>
</div>
<button v-print="'#printContent'">打印</button>