component.ts文件中的错误限制了渲染的角度

时间:2019-06-12 12:09:02

标签: angular angular7

我只是从Angular开始。当我尝试运行我的有角度的应用程序时,它仅显示一个空白页面,并且在对其进行检查时发现应用程序根目录为空。 所以我打开了app.component.ts文件,在那里发现了一些错误

import { Component } from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls:['./app.component.scss']
})
export class AppComponent {
  title = 'My Angular App';
}

在组件指令处,错误提示

  

'{选择器类型:字符串; templateUrl:字符串; styleUrls:   串[]; }'不可分配给'Component'类型的参数。
  类型'{选择器:字符串;类型中缺少属性'true'。 templateUrl:   串; styleUrls:string []; }'。

我不明白自己做错了什么。 Angular版本7

1 个答案:

答案 0 :(得分:0)

问题是there

我认为您没有在app.module中使用正确的导入和声明。