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
We create 3 tags for same property this.name.
We could avoid it and create one tag.
We could do it in compile-time with let.
Or we could replace this. with custom proxy and have caching on this level.
In addition, we could transform {{this.name}} to {{get this "name"}} and use something like cellFor
The text was updated successfully, but these errors were encountered:
If template has case like this:
We create 3 tags for same property
this.name
.We could avoid it and create one tag.
We could do it in compile-time with
let
.Or we could replace
this.
with custom proxy and have caching on this level.In addition, we could transform
{{this.name}}
to{{get this "name"}}
and use something likecellFor
The text was updated successfully, but these errors were encountered: