I want to pass data from HTML to the component so I\'ve created an event like this:
Give it a ViewChild reference :
월 8회 {{r.value['charge']}}
In your component :
@ViewChild('myDiv') myDiv: ElementRef; triggerFalseClick() { let el: HTMLElement = this.myDiv.nativeElement; el.click(); }