vue事件

作者: simplerandom | 来源:发表于2020-05-29 14:17 被阅读0次

禁止事件冒泡

<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);        
        }

相关文章

网友评论

      本文标题:vue事件

      本文链接:https://www.haomeiwen.com/subject/nqixzhtx.html