In-depth Guides
Templates

Two-way binding

Two way binding is a shorthand to simultaneously bind a value into an element, while also giving that element the ability to propagate changes back through this binding.

Syntax

The syntax for two-way binding is a combination of square brackets and parentheses, [()]. It combines the syntax from property binding, [], and the syntax from event binding, (). The Angular community informally refers to this syntax as "banana-in-a-box".

Two-way binding with form controls

Developers commonly use two-way binding to keep component data in sync with a form control as a user interacts with the control. For example, when a user fills out a text input, it should update the state in the component.

The following example dynamically updates the firstName attribute on the page:

      
import { Component } from '@angular/core';import { FormsModule } from '@angular/forms';@Component({  standalone: true,  imports: [FormsModule],  template: `    <main>      <h2>Hello {{ firstName }}!</h2>      <input type="text" [(ngModel)]="firstName" />    </main>  `})export class AppComponent {  firstName = 'Ada';}

To use two-way binding with native form controls, you need to:

  1. Import the FormsModule from @angular/forms
  2. Use the ngModel directive with the two-way binding syntax (e.g., [(ngModel)])
  3. Assign it the state that you want it to update (e.g., firstName)

Once that is setup, Angular will ensure that any updates in the text input will reflect correctly inside of the component state!

Learn more about NgModel in the official docs.

Two-way binding between components

Leveraging two-way binding between a parent and child component requires more configuration compared to form elements.

Here is an example where the AppComponent is responsible for setting the initial count state, but the logic for updating and rendering the UI for the counter primarily resides inside its child CounterComponent.

      
// ./app.component.tsimport { Component } from '@angular/core';import { CounterComponent } from './counter/counter.component';@Component({  selector: 'app-root',  standalone: true,  imports: [CounterComponent],  template: `    <main>      <h1>Counter: {{ initialCount }}</h1>      <app-counter [(count)]="initialCount"></app-counter>    </main>  `,})export class AppComponent {  initialCount = 18;}
      
// './counter/counter.component.ts';import { Component, EventEmitter, Input, Output } from '@angular/core';@Component({  selector: 'app-counter',  standalone: true,  template: `    <button (click)="updateCount(-1)">-</button>    <span>{{ count }}</span>    <button (click)="updateCount(+1)">+</button>  `,})export class CounterComponent {  @Input() count: number;  @Output() countChange = new EventEmitter<number>();  updateCount(amount: number): void {    this.count += amount;    this.countChange.emit(this.count);  }}

Enabling two-way binding between components

If we break down the example above to its core , each two-way binding for components requires the following:

The child component must contain:

  1. An @Input() property
  2. A corresponding @Output() event emitter that has the exact same name as the input property plus "Change" at the end. The emitter must also emit the same type as the input property.
  3. A method that emits to the event emitter with the updated value of the @Input().

Here is a simplified example:

      
// './counter/counter.component.ts';import { Component, EventEmitter, Input, Output } from '@angular/core';@Component({ // Omitted for brevity })export class CounterComponent {  @Input() count: number;  @Output() countChange = new EventEmitter<number>();  updateCount(amount: number): void {    this.count += amount;    this.countChange.emit(this.count);  }}

The parent component must:

  1. Wrap the @Input() property name in the two-way binding syntax.
  2. Specify the corresponding property to which the updated value is assigned

Here is a simplified example:

      
// ./app.component.tsimport { Component } from '@angular/core';import { CounterComponent } from './counter/counter.component';@Component({  selector: 'app-root',  standalone: true,  imports: [CounterComponent],  template: `    <main>      <app-counter [(count)]="initialCount"></app-counter>    </main>  `,})export class AppComponent {  initialCount = 18;}