onclick function vuejs code example
Example 1: enter key vue
<!-- only call `vm.submit()` when the `key` is `Enter` -->
<input v-on:keyup.enter="submit()">
<input @keyup.enter="submit()">
vue
Example 2: vuejs v-on
<div v-on:javascriptEvent = "method"></div>
<!-- v-on:click <=> @click -->