js 中断捕获/冒泡事件

<template>
  <div>
    <!-- 把事件触发模式改为捕获 -->
    <div @click.capature="handleStop">
    </div>
    <!-- 事件默认为冒泡模式 -->
    <div @click="handleStop">
    </div>
  </div>
<template>
handleStop(e) {
  e.stopPropagation() // 中断事件继续捕获/冒泡
}
posted @ 2024-08-23 15:52  总是被使用  阅读(1)  评论(0编辑  收藏  举报