#代码
html// page.wxml <MParent> <button wx:for="{{5}}" wx:key="item" slot="test-{{item}}" data-index="{{index}}" bind:tap="onButtonClick"> 测试按钮{{item}} </button> </MParent>
html// Parent.wxml <MChild wx:for="{{5}}" wx:key="index" item="{{item}}"> <view slot="c-test-{{item}}"> <slot name="test-{{item}}"> </slot> </view> </MChild>
html// Child.wxml <slot name="c-test-{{item}}"></slot>