自定义组件bubbles为false时并没有阻止事件冒泡
给组件自定义事件时,设置bubbles为true和false表现一致,并没有阻止事件冒泡。
this.triggerEvent(‘customevent’,{e},{ });
this.triggerEvent(‘customevent’,{ e }, { bubbles:true });
https://developers.weixin.qq.com/s/QwB5g2mL7D4z
希望只触发 customevent 事件,不触发外层view上绑定的tap事件。