参考来源:
事件修饰符:
.prevent
.stop
功能:
点击链接,取消默认跳转事件;
点击按钮,阻止默认冒泡行为。
效果展示:
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>01vue初体验</title>
</head>
<body>
<div id="app">
<!-- 阻止默认行为 -->
<a href="http://www.baidu.com" @click.prevent="show">跳转到百度首页</a>
<!-- 阻止事件冒泡 -->
<div style="box-sizing: border-box;padding-left:20px;height: 100px;width: 100px;line-height:100px;background-color: purple;" @click="divHandle">
<button style="width:30px;" @click.stop="btnHandle"></button>
</div>
</div>
<!-- 导入vue的库文件 -->
<script src="./lib/vue-2.6.12.js"></script>
<!-- 创建vue的实例对象 -->
<script>
const vm = new Vue({
// 表示当前vm实例要控制页面上的哪个区域,接收的值是一个选择器
el: '#app',
// data对象就是要渲染到页面上的数据
methods: {
show(e) {
console.log('点击了链接')
},
divHandle() {
console.log('divHandle')
},
btnHandle() {
console.log('btnHandle')
},
}
})
</script>
</body>
</html>