ts1206 decorators are not valid here, Angular 2

前端 未结 3 1114
半阙折子戏
半阙折子戏 2021-02-11 11:56

I started to program Angular 2 and I stuck with an error:

ts1206 decorators are not valid here

@Component({   //  ts1206 de         


        
3条回答
  •  囚心锁ツ
    2021-02-11 12:47

    The Decorators must come directly before an exported class for example:

    @Component({
        ...
    })
    export class someComponent{}
    

    this goes the same for @Pipe @Directive @Injectable and @NgModule

提交回复
热议问题