具体报错内容:
Property binding ngIf not used by any directive on an embedded template. Make sure that the property name is spelled correctly and all directives are listed in the "@NgModule.declarations".
解决办法:
导入
import { CommonModule } from '@angular/common';
imports
中引入CommonModule
模块
1 | //components.module.ts |