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

后端 未结 11 2232
滥情空心
滥情空心 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:21

    I had a component declared without the styleUrls property, like this:

    @Component({
        selector: 'app-server',
        templateUrl: './server.component.html'
    })
    

    instead of:

    @Component({
        selector: 'app-server',
        templateUrl: './server.component.html',
        styleUrls: ['./server.component.css']
    })
    

    Adding in the styleUrls property solved the issue.

提交回复
热议问题