我在我的组件中使用了这段代码:
<button type="button" class="btn btn-primary "(click) ="toggle()" >Create</button>
并将其添加到app.component.html:
<app-table *ngif="showFirst"></app-table>
<app-form *ngif="!showFirst"></app-form>
我遇到了this error:
无法绑定到&#39; ngif&#39;因为它不是'app-table&#39;。
的已知属性
答案 0 :(得分:0)
将*ngif
修改为*ngIf
,因为它在此区分大小写,因为它是指令而不是html属性