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
The value of someProp is immediately overwritten once the component has been attached to the DOM. If we move the custom.someProp assignment after the call to appendChild it works but that shouldn't be necessary.
The text was updated successfully, but these errors were encountered:
Given a web component which accepts an input property eg.
And then creating it via JS:
The value of
someProp
is immediately overwritten once the component has been attached to the DOM. If we move thecustom.someProp
assignment after the call toappendChild
it works but that shouldn't be necessary.The text was updated successfully, but these errors were encountered: