一.vue--阻止冒泡的行为
上例子--
<button @click=text($event)> </button> methods:{ text:function(event){ event.cancelBubble = true; } }