graph TD
c[Creation]
dl[Delayed Load]
ui[User Input]
sc[State Change]
s[Stringification]
li[List Iteration]
cu[Component Replacement / Update]
cp[Computed Property]
dl --> sc
ui --> sc
c --> sc
sc --> s
sc --> cp
cp --> s
sc --> li
li --> s
li --> cu
cp --> cu
sc --> cu
cp --> li
graph TD
sc[State Change]
s[Stringification]
li[List Iteration]
cu[Component Replacement / Update]
cp[Computed Property]
sc --> s
sc --> cp
cp --> s
sc --> li
li --> s
li --> cu
cp --> cu
sc --> cu
cp --> li