lhl 6ff0e96ad3 8-4-1 | 1 năm trước cách đây | |
---|---|---|
.. | ||
.Archive | 1 năm trước cách đây | |
components | 1 năm trước cách đây | |
dist | 1 năm trước cách đây | |
lib | 1 năm trước cách đây | |
node_modules | 1 năm trước cách đây | |
src | 1 năm trước cách đây | |
README.md | 1 năm trước cách đây | |
package.json | 1 năm trước cách đây |
This is a directive wrapper for printed, Simple, fast, convenient, light.
npm install vue-print-nb --save
import Print from 'vue-print-nb'
Vue.use(Print);
Download the project, install dependencies, run demo
npm run serve
-Local: http://localhost:8080/
<button v-print>Print the entire page</button>
HTML:
<div id="printMe" style="background:red;">
<p>葫芦娃,葫芦娃</p>
<p>一根藤上七朵花 </p>
<p>小小树藤是我家 啦啦啦啦 </p>
<p>叮当当咚咚当当 浇不大</p>
<p> 叮当当咚咚当当 是我家</p>
<p> 啦啦啦啦</p>
<p>...</p>
</div>
<button v-print="'#printMe'">Print local range</button>
Pass in a string type directly
id
: ID of local print rangeHTML:
<button v-print="printObj">Print local range</button>
<div id="printMe" style="background:red;">
<p>葫芦娃,葫芦娃</p>
<p>一根藤上七朵花 </p>
<p>小小树藤是我家 啦啦啦啦 </p>
<p>叮当当咚咚当当 浇不大</p>
<p> 叮当当咚咚当当 是我家</p>
<p> 啦啦啦啦</p>
<p>...</p>
</div>
JavaScript:
export default {
data() {
return {
printObj: {
id: "printMe",
popTitle: 'good print',
extraCss: 'https://www.google.com,https://www.google.com',
extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>'
}
};
}
}
You can also pass in an object type Objcet
id
: *requisite Partial printing of the incoming IDstandard
: Document type, default is html5, optional html5
, loose
, strict
extraHead
: Additional tags attached to the head tag, separated by commasextraCss
: Additional link connections, separated by commaspopTitle
: Title shows the titleendCallback()
: Callback events after printing