Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a11smiles/4ee79ebaa57edc32950b8a3677a45575 to your computer and use it in GitHub Desktop.
Save a11smiles/4ee79ebaa57edc32950b8a3677a45575 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
declare var gtag: any;
@Component({
selector: 'app-first-page',
templateUrl: './first-page.component.html',
styleUrls: ['./first-page.component.scss']
})
export class FirstPageComponent implements OnInit {
private _clickCnt = 0;
ngOnInit() {
}
click() {
gtag('event', 'click', {
event_category: 'Button',
event_label: 'First Page',
value: ++this._clickCnt
});
console.log(`Button clicked ${this._clickCnt} times.`);
console.log('Click for "First Page" sent!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment