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
If you're writing a Component in TS, you essentially have to define each property twice.
Internally, ES class properties use Object.defineProperty every time the class is initialized, which is slow. This is why this was avoided in the first place.
If no static properties object has been defined, we can check for class properties at registration and build it.
The text was updated successfully, but these errors were encountered:
If you're writing a Component in TS, you essentially have to define each property twice.
Internally, ES class properties use Object.defineProperty every time the class is initialized, which is slow. This is why this was avoided in the first place.
If no static properties object has been defined, we can check for class properties at registration and build it.
The text was updated successfully, but these errors were encountered: