我只是从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