I have an angular 5 component that needs to open a link in new tab, I tried the following:
page link>
{{SiteUrl}}
and in your Component.ts
openSite(siteUrl) { window.open("//" + siteUrl, '_blank'); }