禁止事件冒泡
<div @click="fu" style="background-color: grey; width: 200px;height: 200px;">
<div @click.stop="zi" style="background-color: rgb(206, 18, 18); width: 100px;height: 100px;"></div>
</div>
停止事件默认行为
<a href="http://www.baidu.com" @click.prevent="zi">link</a>
特定的键触发行为
<input type="text" @keyup.enter="zi">
事件对象和元素
m3:function(event){
console.log(event.target);
}
网友评论