直接this.title

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