js 中断捕获/冒泡事件
<template>
<div>
<!-- 把事件触发模式改为捕获 -->
<div @click.capature="handleStop">
</div>
<!-- 事件默认为冒泡模式 -->
<div @click="handleStop">
</div>
</div>
<template>
handleStop(e) {
e.stopPropagation() // 中断事件继续捕获/冒泡
}
<template>
<div>
<!-- 把事件触发模式改为捕获 -->
<div @click.capature="handleStop">
</div>
<!-- 事件默认为冒泡模式 -->
<div @click="handleStop">
</div>
</div>
<template>
handleStop(e) {
e.stopPropagation() // 中断事件继续捕获/冒泡
}