docs(angular): add data-binding content (#6498)

pull/6509/head
J. Degand 3 months ago committed by GitHub
parent ee27f5c72d
commit e0c0925d38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      src/data/roadmaps/angular/content/data-binding@5vZkiH7HDwONIABLfNJ06.md

@ -1 +1,8 @@
# Data Binding
# Data Binding
In an Angular template, a binding creates a live connection between a part of the UI created from a template (a DOM element, directive, or component) and the model (the component instance to which the template belongs). This connection can be used to synchronize the view with the model, to notify the model when an event or user action takes place in the view, or both. Angular's Change Detection algorithm is responsible for keeping the view and the model in sync. Bindings always have two parts: a target which will receive the bound value, and a template expression which produces a value from the model.
Visit the following resources to learn more:
- [@official@Angular Official Docs - Understand Binding](https://angular.dev/guide/templates/binding)
- [@article@Data Binding in Angular](https://www.angularminds.com/blog/data-binding-in-angular)
Loading…
Cancel
Save