부모 클래스에서 자식 구성 요소 메서드 호출-Angular 호출하려는 메서드가있는 자식 구성 요소를 만들었습니다. 이 메서드를 호출하면 console.log()줄만 시작하고 test속성을 설정하지 않습니까 ?? 아래는 변경 사항이 적용된 빠른 시작 Angular 앱입니다. 부모의 import { Component } from '@angular/core'; import { NotifyComponent } from './notify.component'; @Component({ selector: 'my-app', template: ` Call Child Component Method ` }) export class AppComponent { private notify: NotifyComponent; const..