例如,在组件c中HTML:
<a>
<b></b>
<a/>
在组件a html中,如何指定将组件B放置在哪里? 如组件a中的HTML:
<div>
<lable>Title</lable>
<div>'this is the place where I want to place b'</div>
</div>
在组件B.TS文件中
@Component({
selector: 'app-b',
templateUrl: './b.component.html'
})
<div>
<lable>Title</lable>
<app-b></app-b>
</div>