項目中遇到了要列印頁面的功能,我感覺我這個方法不太好,歡迎各位來改善指導 使用print插件 https://github.com/xyl66/vuePlugs_printjs 教程地址::https://blog.csdn.net/peiyongwei/article/details/824607 ...
項目中遇到了要列印頁面的功能,我感覺我這個方法不太好,歡迎各位來改善指導
使用print插件 https://github.com/xyl66/vuePlugs_printjs
教程地址::https://blog.csdn.net/peiyongwei/article/details/82460709
- 在min.js中引入
- import Print from '@/plugs/print'
- Vue.use(Print) // 註冊
1 <template> 2 3 <section ref="print"> 4 5 <要列印內容/> 6 7 <div class="no-print">不要列印我</div> 8 9 </section> 10 11 </template> 12 13 this.$print(this.$refs.print) // 調用方法使用