自定义组件并没挂载到DOM上,但生命周期触发了
// PageA.wxml
<ComponentA><ComponentB /></ComponentA>
<slot wx:if=“{{false}}” />
这个时候ComponentB没挂载到DOM上面,但是created、attached、ready生命周期都触发了。
// PageA.wxml
<ComponentA><ComponentB /></ComponentA>
<slot wx:if=“{{false}}” />
这个时候ComponentB没挂载到DOM上面,但是created、attached、ready生命周期都触发了。