iron-pages
iron-pages copied to clipboard
are all the pages created?
if seems like all the pages are being created, e.g., the lifecycle methods are being called, before they are being used: this is an issue if the pages all depend on the same set of bindings cause variables to leak.
the docs need to be updated to indicate that the pages are not lazy loaded. here is the console log from a sample run:
module-id="BaseComp"
<...pages >
<CompOne>
<CompTwo>
< .../pages ...>
```javascript
BaseComp:created
CompOne:created
CompTwo:created
CompOne:ready
CompTwo:ready
BaseComp:ready
BaseComp:detached
CompOne:detached
CompTwo:detached
Hi @mbana I am wondering how did you manage it.