iron-pages icon indicating copy to clipboard operation
iron-pages copied to clipboard

are all the pages created?

Open mbana opened this issue 9 years ago • 1 comments

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

mbana avatar Sep 13 '16 09:09 mbana

Hi @mbana I am wondering how did you manage it.

Taewa avatar Jul 30 '19 14:07 Taewa