I have a page in Vue with input fields. I wanna show a message when someone changed any input field in that component. I'm used to Angular where you can use the isDirty function, but Vue doesn't have that.
Is there a way to catch all keyup events in a Vue view? So I can catch that and set a variable to true for the message to be shown?
Now I have this added to all input models:
<input v-model="foo" @change="someThingChanged()">