Vue2.6.11中禁止点击事件冒泡

"vue": "^2.6.11",
第一种方式:
如果事件绑定的标签为原生H5标签不用.native修饰,
如果事件绑定的标签为Vue组件那么click得用native修饰。
<div v-on:click="handle0">
       <button @click.stop="handle1">点击1</button> 
    <VueCommponent @click.native.stop="handle2">点击2</VueCommponent>
</div>

第二种:
<div v-on:click="handle0">
       <button v-on:click.stop="handle1">点击1</button>
</div>
原文地址:https://www.cnblogs.com/Oldz/p/14237129.html