<div (click)="handleClick()">{{title}}</div>
import { Component } from '@angular/core';@Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css']})export class AppComponent { title = 'my-app'; handleClick():void{ console.log("click") }}
事件获取state中的数据
export class AppComponent { title = 'my-app'; handleClick():void{ console.log(this.title) }}
改变数据
export class AppComponent { title = 'my-app'; handleClick():void{ console.log(this.title) this.title = "change" }}