wechat-- onLoadvue -- mountedReact --componentDidMountAngular--ngOnInit
//app.component.html<div (click)="handleClick()">{{title}}</div>
//app.component.tsexport class AppComponent {title = 'my-app';handleClick():void{console.log("click")}}
通过事件获取data中的数据
export class AppComponent {title = 'my-app';handleClick():void{this.title="change"console.log(this.title)}}
通过事件改变data中的数据
export class AppComponent {title = 'my-app';handleClick():void{this.title="change"}}
