在Angular 6

时间:2018-06-07 09:41:25

标签: javascript angular angular-components angular6

我在不同的组件中创建了我的应用程序的不同布局,我使用* ngIf条件访问它

<app-layout1 *ngIf="selected==1"></app-layout1>
<app-layout2 *ngIf="selected==2"></app-layout2>
<app-layout3 *ngIf="selected==3"></app-layout3>

我想知道如果我们有更有效的方法,比如:

<app-layout[selected]></app-layout[selected]>

1 个答案:

答案 0 :(得分:0)

不,你必须手动编写组件......

没有捷径!