FranckFreiburger / vue-pdf

vue.js pdf viewer
MIT License
2.23k stars 522 forks source link

vue-pdf pdf file create fails after pdf destroy #165

Open asd375zxcvb opened 5 years ago

asd375zxcvb commented 5 years ago
asd375zxcvb commented 5 years ago

I have pdf inserted in two pages, but when I switch between pages, the first pdf is loaded and the second pdf is not loaded.

romio95 commented 5 months ago

I have pdf inserted in two pages, but when I switch between pages, the first pdf is loaded and the second pdf is not loaded.

Try remove worker after load 1 document, smth like this

mounted() {
    this.src.promise.then((pdf) => {
            this.numPages = pdf.numPages

            this.src._worker.destroy()
        })
}