Property and Event Binding Recap
Bind data into and events out of components.
Two Directions of Data Flow
Angular templates move data two ways: property binding pushes data into the DOM, and event binding sends user actions back to the component.
Interpolation
Interpolation with double curly braces renders a component value as text. It is one-way, component to view.
<p>{{ title }}</p>
// component
title = "Dashboard";All lessons in this course
- Property and Event Binding Recap
- Two-Way Binding with ngModel
- model() Signal Inputs
- Custom Two-Way Bindable Properties