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
Recently I noticed that data that has been assigned via the data: {} property will not only get put on this.$ but also on this.
Assigning properties via this.$.myProp = { a: 1, b: 2} only inserts them on scope and doesn't put them onto the this object of the controller.
The text was updated successfully, but these errors were encountered:
Recently I noticed that data that has been assigned via the
data: {}
property will not only get put onthis.$
but also onthis
.Assigning properties via
this.$.myProp = { a: 1, b: 2}
only inserts them on scope and doesn't put them onto thethis
object of the controller.The text was updated successfully, but these errors were encountered: