While using Vue, I am developing a form which includes an input box. Whenever the text in the input box changes, it should update the function setMessage
.
<input type="text" v-model="test" v-on:change"setMessage">
However, the issue is that the update only occurs when I click outside the input box.
I suspect that there might be another event besides the change
event that could be used!