Open Rifaldikn opened 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;
});
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