-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPdfViewer.vue
48 lines (41 loc) · 909 Bytes
/
PdfViewer.vue
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
36
37
38
39
40
41
42
43
44
45
46
47
48
<template>
<div>
pdf viewer goes here
</div>
</template>
<script>
import pdfjsLib from 'pdfjs-dist'
export default {
props: {
file: {
required: false,
type: String,
default: false
}
},
mounted() {
this.getDoc()
},
data() {
return {
pdf: null
}
},
watch: {
pdf: {
handler: function(val) {
console.info('this.pdf updated')
console.info({
pdf: val
})
}
}
},
methods: {
getDoc() {
console.info('getting pdf')
this.pdf = pdfjsLib.getDocument('/docs/demo-ccd.pdf')
}
}
}
</script>