5个常用的vue事件修饰符

 分类:vue教程时间:2018-11-22 16:14:53点击:
  1.         vue事件修饰符,有5个很常用的阻止冒泡:.stop、阻止默认事件:.prevent、添加事件侦听器时使用事件捕获模式 :.capture、只当事件在该元素本身触发时触发回调:.self 、事件只触发一次:.once,5个常用的vue事件修饰符,举一个例子,其他4个你也懂了。

  2. 1.阻止冒泡:.stop

  3. 5个常用的vue事件修饰符

    看个例子,你就懂了

<!Doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK"/>
<title>使用 .stop阻止冒泡</title>
<style type="text/css">
*{margin:0;padding:0;}
body{
width:600px;
margin:100px auto;
}
.box {
height:200px;
background:red;
padding:50px;
}
</style>
</head>
<body>
<div id="app">
<div class="box" @click="box">
<input type="button" value="点击我" @click.stop="btn">
</div>
</div>
<script type="text/javascript" src="lib/vue.js"></script>
<script>
var vm = new Vue({
el: '#app',
data: {},
methods: {
box() {
console.log('这是触发了 box div 的点击事件!')
},
btn() {
console.log('这是触发了 btn 按钮 的点击事件!')
}
}
});
</script>
</body>
</html>

点击查看演示

2. 阻止默认事件:.prevent

3. 添加事件侦听器时使用事件捕获模式 :.capture

4.只当事件在该元素本身(比如不是子元素)触发时触发回调:.self

5.事件只触发一次:.once

除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址: