如果是不同的幻灯片,如何在同一页面上使用不同模型重复使用一个组件两次?
示例:
<component [(model)]="model1"></component>
<component [(model)]="model2"></component>
最佳答案
您可以使用 ngFor。
.ts 文件:
var models = [model1, model2];
html文件:
<div *ngFor="let mod of models">
<component [(model)]="mod"></component>
</div>
关于typescript - angular2 : Reusing common component twice on the same page,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44197103/