You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{#each a as b}}
<Widgetbind:value='b'/>
{{/each}}
Reason is the discrepancy between this code and this code — in the first case Svelte is checking if the dependencies of b (i.e. ['a']) are among the changed data properties, in the second case it's checking if b itself is among them (which of course it isn't).
The text was updated successfully, but these errors were encountered:
This works...
...but this doesn't:
Reason is the discrepancy between this code and this code — in the first case Svelte is checking if the dependencies of
b
(i.e.['a']
) are among the changed data properties, in the second case it's checking ifb
itself is among them (which of course it isn't).The text was updated successfully, but these errors were encountered: