PDF Reader for Vue 3 using Mozilla's PDF.js
npm install vue3-pdfjs  !Snyk Vulnerabilities for npm package !npm
!vue supported version  
#### DEMO
``bash`
npm i vue3-pdfjs
or
yarn add vue3-pdfjs
##### Demo code can be found under the docs section here.
ts
import { createApp } from 'vue'
import App from './App.vue'
import VuePdf from 'vue3-pdfjs'const app = createApp(App)
app.use(VuePdf)
app.mount('#app')
`$3
Import components from the
esm folder to enable tree shaking.
Please note that Mozilla's pdfjs npm package does not export tree-shakeable ES modules. Info here - https://github.com/mozilla/pdf.js/issues/12900
`ts
``