In Angular 1.x I can do the following to create a link which does basically nothing:
My Link
But the same tag
I am using this workaround with css:
/*** Angular 2 link without href ***/ a:not([href]){ cursor: pointer; -webkit-user-select: none; -moz-user-select: none; user-select: none }
html
My link
Hope this helps