我正在尝试在父级的子级中包含一些模板,但是我需要访问转录中的子级属性。 有什么办法吗?
子组件:-
<ul>
<li *ngFor="let item of companies">
{{item.name}} <ng-content></ng-content>
</li>
</ul>
父项:-
<app-child [companies]="companies">
<a href="">
Visit {{item}}
</a>
</app-child>
我需要在此处的父组件中添加“物品”。
Stackblitz https://stackblitz.com/edit/angular-fj94ej