Angular Components: Pass data from parent to child component
Parent Component
parent.component.ts
export class ParentComponent {
msgToChild = '';
sendMessageToChild() {
this.msgToChild = 'Hello from the PARENT component';
}
}
parent.component.html
<button (click)="sendMessageToChild()">Se...
angularing.hashnode.dev1 min read