需求目的:实现对table表格 form表单的 信息之类的打印,后台管理用的多
1.安插件
npm i vue3-print-nb
npm install vue3-print-nb
2.main.ts 全局注册
//引入
import print from 'vue3-print-nb'
const app =createApp(App)
// 注册
app.use(print)
3.综合使用
<div id="content" >
<ul>
<li>林华谢了春红</li>
<li>太匆匆</li>
</ul>
<span>
李煜
</span>
<img src="@/assets/icon_login.png" />
</div>
<button type="button" v-print ="'#content'"> 打印</button>
简单快速适用