sandanat / vue-pdf-app

VUEjs v2 PDF viewer based on Mozilla's PDFJS
MIT License
225 stars 103 forks source link

Page Always Reload When Clicked #92

Open Rifaldikn opened 2 years ago

Rifaldikn commented 2 years ago

I have problem with vue-pdf-app, it's always reload/refresh the page when i clicked zoom in/zoom out also it will refresh if i click other toolbar button

Here i meet same issue with this code https://codesandbox.io/s/bold-darkness-tfbpp?file=/src/components/ModalPDFReader.vue:2993-3004

eye8 commented 2 years ago

A temporary workaround is to stop the button click event propagation. Suppose you installed vue-pdf-app in a div called "vuePdfApp", you can add the following JavaScript code to stop event propagation:

$(document).on('click', '#vuePdfApp button', evt => {
    evt.stopPropagation();
    return false;
});