1. export class AppComponent {
    2. title = 'my-app';
    3. handleClick():void{
    4. console.log(this.title)
    5. }
    6. }

    改变数据

    1. handleClick(): void {
    2. console.log(this.title);
    3. this.title = "change"
    4. }