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
A custom element's id attribute behaves differently compare to a standard html element when the id property is bound to a class getter that returns undefined.
This difference is because of the way compiler handles id value for the two types of component. For custom element, the compiler handles the id property as props.
For a standard element, the compiler handles the id property as attrs.
Description
A custom element's id attribute behaves differently compare to a standard html element when the id property is bound to a class getter that returns
undefined
.This difference is because of the way compiler handles id value for the two types of component. For custom element, the compiler handles the
id
property asprops
.For a standard element, the compiler handles the
id
property asattrs
.Steps to Reproduce
The text was updated successfully, but these errors were encountered: