https://developers.weixin.qq.com/s/U7wGeimX78ih 官方示例没有写bindcustomevent="myEventListener"对应的函数,我补充了一下
myEventListener:function(e){console.log(e)},
,发现自定义组件内部
<view class="wrapper">
<view bindcustomevent="myEventListener">
<slot />
</view>
<button bindtap="onTap">点击这个按钮将触发一系列事件</button>
</view>
无法从内层到外层冒泡