単純な入力タイプのテキストがあり、パフォーマンスのために onKeyPress を削除したいと考えています。
このような多くのソリューションをテストしましたが、うまくいきません。クロムナビゲーターのパフォーマンスタブにイベントプレスが再び表示されます
mounted() {
const doc = document.getElementById('input-simple-text')
doc.onkeydown = null
}
// simple input
<input class="form-control"
id="input-simple-text"
type="text"
v-model="mutableValue"
ref="input" />
このイベントを削除する解決策がある場合は、ありがとう