Prevent the @change event of el-checkbox from bubbling

We can use the click event to handle event bubbling, but it is not feasible to use @change.stop.

<p @click.stop>
   <el-checkbox v-model="value" @change="(e)=>handleCheckRowChange(e,item)"></el-checkbox>
</p>

Guess you like

Origin blog.csdn.net/weixin_46054723/article/details/130112676