반응형
Error: Unexpected value 'CodeTypeComponent' declared by the module 'AppModule'. Please add a @Pipe/@Directive/@Component annotation
콤포넌트 내에서 다른 클래스 선언시 @Component 아래에다 클래스 선언시 오류난다.
@Component 정의 이전에 필요 클래스를 선언해야된다.
class Person {
id: number;
firstName: string;
lastName: string;
}
@Component({
selector: 'app-code-type',
templateUrl: './code-type.component.html',
styleUrls: ['./code-type.component.css']
})
위에 Person 클래스를 저렇게 @Component 위에 정의를 해야 동작된다.
반응형