1、@click用法
@click="fun"
@click="fun(参数)"
v-on:click="fun"
2、@click.stop 阻止事件冒泡
<div class="father" @click="sayFather">
<div class="child" @click.stop="sayChild">
</div>
</div>
3、@click.prevent 阻止事件默认行为
<a href="http://www.baidu.com" @click.prevent="f1">百度一下</a>
<form action="/xxx" @submit.prevent="f2">
<input type="submit" value="注册">
</form>
4、@keyup.enter 按键修饰符
<input type="text" @keyup.enter="f4">
methods: {
f4 (event) {
console.log(event.keyCode)
alert(event.target.value)
}
}