sandanat / vue-pdf-app

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

how to remove the history search #78

Open angelsaber opened 3 years ago

angelsaber commented 3 years ago

how to remove the history search 微信图片_20210915172140

sandanat commented 3 years ago

Hi! Use:

mounted() {
  const elem = document.getElementById("findInput");
  elem && elem.setAttribute("autocomplete", "off");
}

I'll add this in a future release by default

angelsaber commented 3 years ago

I'll add this in a future release by default

I tried it and it worked.thanks