vue-pdf-app
vue-pdf-app copied to clipboard
how to remove the history search
how to remove the history search
Hi! Use:
mounted() {
const elem = document.getElementById("findInput");
elem && elem.setAttribute("autocomplete", "off");
}
I'll add this in a future release by default
I'll add this in a future release by default
I tried it and it worked.thanks