How to use pdf.js in vueJs project

876 Views Asked by At

I'm trying to use pdf.js in a single page application made with vueJs and the composition API. I've installed pdfjs-dist and pdfJs (I don't know what the difference is ) but I can't find the propoer way to import it to my components to use it. Can someone tell me how to do it?

i tried this:

<script setup>
    import pdfjsLib from "pdfjs-dist/build/pdf";
</script>

but it doesn't work. I get this error: You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.

I've also tried including pdfjs through a cdn with a script tag in the index.html... but then, It doesn't work. I try to follow a tutorial, but it doesn't work. I just get errors: numPages is not a function.

Can someone help me oout please?

0

There are 0 best solutions below