I have a simple input element using Vue2:
<input
v-model.trim="someModel"
@change="log('change')"
@keyup.enter="log('enter')"
/>
When I change the input value and press "Enter", both @change and @keyup.enter events are fired.
However when I change the input value and press "Ctrl"+"Enter", the @keyup.enter event is fired, but not the @change event.
I'd like the @change event (and the @keyup.enter event) to fire in both cases rather than blocking "Ctrl"+"Enter".