export class AppComponent { title = 'my-app'; handleClick():void{ console.log(this.title) }} 改变数据 handleClick(): void { console.log(this.title); this.title = "change" }