Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Angular >> Move to different page
@Component({
selector: 'app-visit-rangle',
template: `
<button
type="button"
(click)="goTopage()">
Visit Rangle
</button>
`
})
export class VisitRangleComponent {
goTopage() {
location.href = 'https://rangle.io';
}
}
//dataCar is an Array in the component.ts
<a [href]="url" target="_blank">YouTube</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment