1.0.4 • Published 3 years ago

chrome-print v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

使用Chrome-print

仅在Chrome中调用

  1. 在cmd中下载包
npm i chrome-print
  1. 在mian.js引入
import print from "chrome-print";
Vue.use(print);
  1. 在Vue中使用
<template>
    <div ref="print">
        print me
    </div>
	<button @click="printContext" id="print">
        打印
    </button>
</template>

<script>
	...
    
    printContext() {
      this.$print(this.$refs.print);
    },
    
    ...
</script>
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago