UNPKG

@gaonengwww/tiny-toolkit-docs

Version:

这里对你的套件进行简单描述, 比如适用哪些场景,使用了什么技术, 有什么特点

12 lines (10 loc) 289 B
import { Component } from '@angular/core'; @Component({ templateUrl: './button-event.html', }) export class ButtonEventComponent { myLogs: Array<string> = []; onClick(event: MouseEvent): void { this.myLogs = [...this.myLogs, `onClick() event = ${event.type}`]; } }