打印插件
... 2021-7-29 Less than 1 minute
# 打印插件
# 代码
# 使用
- 1.npm install avue-plugin-print --save
- 2.import $Print from 'avue-plugin-print'
- 3.$Print(el);
- 4.参考如下代码使用
我是标题1
我是标题2
我会被忽略
<template>
<div id="all">
<h2 style="color:red"
id="test">我是标题1</h2>
<h2 style="color:green">我是标题2</h2>
<h2 class="no-print">我会被忽略</h2>
<button @click="handlePrint">打印全部</button>
<button @click="handlePrint1">打印局部</button>
</div>
</template>
<script>
import $Print from 'avue-plugin-print'
export default {
methods: {
$Print,
handlePrint () {
this.$Print('#all')
},
handlePrint1 () {
this.$Print('#test')
}
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25