Angular - Component Interaction
Examine this Angular child component code:
What is the issue with this code?
import { Component, Output, EventEmitter } from '@angular/core';
@Component({ selector: 'child-comp', template: '' })
export class ChildComponent {
@Output() clicked = new EventEmitter();
send() {
this.clicked.emit('data');
}
} What is the issue with this code?
