Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Created February 23, 2021 11:09
Show Gist options
  • Save Bilkiss/fba269c654b4ec1b00742815360fc0d3 to your computer and use it in GitHub Desktop.
Save Bilkiss/fba269c654b4ec1b00742815360fc0d3 to your computer and use it in GitHub Desktop.
import { Component, HostListener } from '@angular/core';
@Component({
selector: 'example-component',
template: ‘Hey another component!'
})
export class ExampleComponent {
@HostListener('click', ['$event'])
onHostClick(event: Event) {
// clicked, `event` available
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment