我刚从angular 2网站克隆了quickstart项目,刚刚将app.component.ts更改为以下内容:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<h1>My First Angular App</h1>'
})
export class AppComponent {
private name: string = 'Abc';
this.name = 'Def';
}
VSCode在使用this.name时给出了以下错误: [ts]意外的令牌。期望构造函数,方法,访问器或属性。 任何
VSCode版本 - 1.5.3 Angular 2版本 - 2.0.0(最终版本)