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 I have a prop with the same name as a class member it will overwrite the class member. For example, if I try to pass a render prop to my React component it will overwrite the render method of the Angular component controller.
Using scope instead of bindings may fix the issue as long as the component lifecycle methods are still invoked.
The text was updated successfully, but these errors were encountered:
The $ngChanges lifecycle method doesn't work when using scope 😕.
It's not really necessary to use the conveniences of the NgComponent class with this module. This module could do away with it and properly hide its implementation so it doesn't collide with any Angular bindings.
If I have a prop with the same name as a class member it will overwrite the class member. For example, if I try to pass a render prop to my React component it will overwrite the render method of the Angular component controller.
Using
scope
instead ofbindings
may fix the issue as long as the component lifecycle methods are still invoked.The text was updated successfully, but these errors were encountered: