1<!-- only call `vm.submit()` when the `key` is `Enter` -->
2<input v-on:keyup.enter="submit()">
3<input @keyup.enter="submit()">
4vue
1<input type="text" v-on:keyup.enter="submit" />
2<p> {{ outputValueOnEnter }} </p>
3
4//In data() :
5outputValueOnEnter = ''
6
7// In methods:
8submit(e) {
9 this.outputValueOnEnter = e.target.value
10 e.target.value = ''
11}
12
1<!-- Alt + C -->
2<input v-on:keyup.alt.67="clear">
3
4<!-- Ctrl + Click -->
5<div v-on:click.ctrl="doSomething">Do something</div>