在vue项目中整合vue-print-nb实现打印功能

1,232 阅读1分钟

转载

你可以使用如下命令通过 npm 安装 vue-print-nb:

cnpm install vue-print-nb

安装完成后:

在main.js中引入

import Print from 'vue-print-nb'

Vue.use(Print);  //注册

Vue代码中的使用:

<template>
	<div>
	  <div id="printTest" >	
      <p>锄禾日当午</p>
      <p>汗滴禾下土 </p>	
      <p>谁知盘中餐</p>	
      <p>粒粒皆辛苦</p>	
   </div>	
	 <button v-print="'#printTest'">打印</button>
	</div>
</template>

<script>

</script>

<style>

</style>