天天看點

解決微信H5頁面軟鍵盤彈起後頁面下方留白的問題(iOS端)

<input type="text" @blur.prevent="inputLoseFocus">

inputLoseFocus() {
  setTimeout(() => {
    window.scrollTo(0, 0);
  }, 100);
}