http://learnangular2.com/events/
EVENT OBJECT
To capture the event object, pass $event as a parameter in the event callback from the template:
This is an easy way to modify the event, such as calling preventDefault:
@Component(...)
class MyComponent {
clicked(event) {
event.preventDefault();
}
}