0Pricing
Angular Academy · Lesson

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

  1. Property and Event Binding Recap
  2. Two-Way Binding with ngModel
  3. model() Signal Inputs
  4. Custom Two-Way Bindable Properties
← Back to Angular Academy