I'm using vue-pdf for pdf-viewer. but I have got this error.
this is my code
<template>
...
<pdf :src="pdfUrl" />
...
</template>
<script>
...
import pdf from 'vue-pdf'
export default {
...
components: {
...,
pdf
}
data() {
return ({
pdfUrl: "...",
....
})
}
}
</script>
please help me.