In Angular 1.x I can do the following to create a link which does basically nothing:
My Link
But the same tag
you need to prevent event's default behaviour as follows.
In html
view
In ts file
view(event:Event){ event.preventDefault(); //remaining code goes here.. }