-
Notifications
You must be signed in to change notification settings - Fork 0
Something to discuss as a Team...
Daniel edited this page Sep 6, 2018
·
1 revision
- Easy to use
- Suitable for simple scenarios and fails for complex scenarios
- Similar to AngularJS
- Two way data binding(using [(NgModel)] syntax)
- Minimal component code
- Automatic track of the form and its data(handled by Angular)
- Unit testing is another challenge
- More flexible, but needs a lot of practice
- Handles any complex scenarios
- No data binding is done (immutable data model preferred by most developers)
- More component code and less HTML markup
- Reactive transformations can be made possible such as
-
- Handling a event based on a debounce time
-
- Handling events when the components are distinct until changed
-
- Adding elements dynamically
- Easier unit testing