app.json
"usingComponents":{
"tst2":"/componets/tst/tst"
}
页面中
<tst>
<view>页面中</view>
</tst>
组件中
<view>
<view>组件内上</view>
<slot></slot>
<view>组件内下</view>
</view>
支持多个slot
组件js
Component({
options: {
multipleSlots:true
}
...
}
组件中
<view>
<slot name='a'></slot>
<view>组件内上</view>
<slot name='b'></slot>
<view>组件内下</view>
</view>
页面中
<tst>
<view slot='a'>这是a的内容</view>
<view slot='b'>这是b的内容</view>
</tst>

评论