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
26
27
28
29
30
31
32
33
34
35
| <template>
| <div class="systemDict">
| <vue-barcode
| :value="value()"
| >不支持vue-barcode</vue-barcode>
|
|
| </div>
| </template>
|
| <script>
| import VueBarcode from 'vue-barcode'
|
| export default{
| components: { VueBarcode },
| data () {
| return {
| //条形码内容
| }
| },
| methods: {
| value() {
| let obj = {name:'jack'}
| return JSON.stringify(obj)
| }
| }
| }
|
| </script>
|
|
|
| <style>
|
| </style>
|
|