代碼如下: @Component({ selector: 'my app', template: ` ` }) export class AppComponent{ //利用模板變數stepBar獲取子組件的引用 @ViewChild('stepBar') stepBar: StepBarCompo ...
代碼如下:
@Component({
selector: 'my-app',
template: `
<step-bar #stepBar></step-bar>
`
})
export class AppComponent{
//利用模板變數stepBar獲取子組件的引用
@ViewChild('stepBar') stepBar: StepBarComponent;
//執行子組件的init方法
this.stepBar.init();
}