提问者:小点点

如何将组件放置到Angular 9中父组件结构中的特定位置?


例如,在组件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>

共1个答案

匿名用户

在组件B.TS文件中

@Component({
  selector: 'app-b',
  templateUrl: './b.component.html'
})
  • 您可以看到名称app-b
  • 的选择器
  • 您可以在组件A中使用此选择器
<div>
  <lable>Title</lable>
  <app-b></app-b>
</div>