문서의 이전 판입니다!
1.Parent Component
<app-test-component-interaction [parentData]="name"></app-test-component-interaction>
2.Child Component
export class TestComponentInteractionComponent implements OnInit { //@Input() public parentData; @Input('parentData') public name; constructor() { } ngOnInit() { } }