I am working with an input HTML element that has @input="onInput"
assigned to it.
Within the onInput
method, I have console log output set up, specifically I am logging event.currentTarget.value
. However, I've noticed a strange behavior in IE11 - when I focus on the input and then press any button or use ctrl+v
, there is no output in the console the first time. It's only upon the second try that the handler is called and event.currentTarget.value
contains the full string.
This issue seems to be specific to IE11. Has anyone come across a workaround for this problem?