computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
661 B
12 lines
661 B
# Binding data props attrs events |
|
|
|
In an Angular template, a binding creates a live connection between view and the model and keeps them both in sync. |
|
|
|
- **property**: helps you set values for properties of HTML elements or directives. |
|
- **attributes**: helps you set values for attributes of HTML elements directly. |
|
- **event**: lets you listen for and respond to user actions such as keystrokes, mouse movements, clicks, and touches. |
|
- **data**: It's a combination of property and event binding and helps you share data between components. |
|
|
|
Visit the following resources to learn more: |
|
|
|
- [Angular Official Website](https://angular.io/guide/binding-overview)
|
|
|