Please add a @Pipe/@Directive/@Component annotation. Error

后端 未结 11 2274
滥情空心
滥情空心 2021-02-06 21:29

I am stuck in a situation here. I am getting an error like this.

 compiler.es5.js:1694 Uncaught Error: Unexpected value \'LoginComponent\' declared by the modul         


        
11条回答
  •  难免孤独
    2021-02-06 22:28

    The Above error occurs if any wrong import done. For example sometimes Service files may be added in TestBed.configureTestingModule. And also while importing Material component for example import from

    import {MatDialogModule} from '@angular/material/dialog'
    

    not from

    import {MatDialogModule} from '@angular/material'
    

提交回复
热议问题