0👍
According to the documentation, you have quite a lot of possibilities. One of them is to prevent the event or stop its propagation. https://v2.vuejs.org/v2/guide/events.html#Event-Modifiers
<input class="form-control"
id="input-simple-text"
type="text"
v-model="mutableValue"
v-on:keyup="$event.preventDefault()"
ref="input" />
- [Vuejs]-Chartjs maintain points position, put image alongside with label
- [Vuejs]-Vuetify v-data-table custom filter for dropdown
Source:stackexchange.com