How we can pass data from child component to parent component?
Gajendra Jangid
Select an image from your device to upload
We can pass data from child component to parent using “Output” event emitter.Ex:-
child.component.tsonChildEvent = new EventEmitter();
yourFunction(input: any): void { this.onChildEvent.emit(input);}
parent.component.html