0Pricing
Angular Academy · Lesson

Component Interaction

Learn parent-child component communication.

Component Interaction is a free Angular Academy lesson on CoddyKit — lesson 2 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Angular Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.

1

Component Interaction

In this lesson, you'll learn how components communicate in Angular, especially between parent and child components.

Component Interaction — illustration 1

2

Parent-Child Interaction

Components often need to share data. Parent components can pass data down to child components using input properties.

3

Using @Input()

Use the @Input() decorator to receive data from a parent component:

@Input() userData: string;

4

Passing Data to Child

In your parent component template, pass data using property binding:

<app-child [userData]="parentData"></app-child>

5

Child-to-Parent Communication

Child components communicate upwards using events with the @Output() decorator.

6

Using @Output()

Create an event emitter to send data from child to parent:

@Output() dataEvent = new EventEmitter<string>();

7

Emitting Events

Emit events from the child component:

sendData() {
  this.dataEvent.emit('Hello from Child');
}

8

9

Listening to Events in Parent

Handle emitted events in the parent component template:

<app-child (dataEvent)="handleEvent($event)"></app-child>

10

Summary

You now understand how components can interact through inputs and outputs in Angular. Keep practicing!

Component Interaction — illustration 10

Frequently asked questions

Is the “Component Interaction” lesson free?

Yes — the full text of “Component Interaction” is free to read here on the web, and the Angular Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Angular Academy course, upgrade to CoddyKit PRO.

What will I learn in “Component Interaction”?

Learn parent-child component communication. You practise Angular Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Angular Academy?

No prior experience is required. Angular Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 3, so you can start here or from the beginning and move at your own pace.

How long does the “Component Interaction” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Angular Academy lesson?

Yes. Every Angular Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Custom Directives
  2. Component Interaction
  3. Dynamic Components
← Back to Angular Academy