最佳答案
看起来,当我使用 Angular cli 创建一个 Angular 2应用程序时。我的默认组件前缀是 AppComponent 的 app-root。现在,当我将选择器更改为其他内容时,请输入“ abc-root”
@Component({
selector: 'abc-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
Vscode 警告我,
[tslint] The selector of the component "AppComponent" should have prefix "app"