vue+element打印页面功能
Posted jun-qi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue+element打印页面功能相关的知识,希望对你有一定的参考价值。
项目中遇到了要打印页面的功能,我感觉我这个方法不太好,欢迎各位来改善指导
使用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) // 调用方法使用
以上是关于vue+element打印页面功能的主要内容,如果未能解决你的问题,请参考以下文章
前端Vue+Element UI案例:通用后台管理系统-登陆页面功能:登录权限跳转路由守卫退出