在自定义组件的 wxml 结构中,可以提供一个 slot 节点(插槽),用于承载组件使用者提供的 wxml 结构。
在小程序中,默认每个自定义组件中只允许使用一个 slot 进行占位,这种个数上的限制叫做单个插槽。
新建组件-在wxml中添加
<slot></slot>
在app.json里面定义组件
"usingComponents": {
"test3":"/components/test3/test3"
}
<slot name="a1"></slot>
<slot name="a2"></slot>
<slot name="a3"></slot>
在组件的js里面开启插槽
options:{
// 开启多个插槽
multipleSlots:true
},