how to redirect to another component in angular on button click code example
Example 1: how click button and redirect angular
<a class="btn" routerLink="/votes">Check votes</a>
Example 2: how click button and redirect angular
import { Component } from '@angular/core';
import { Router } from '@angular/router';
export class MyComponent {
constructor(private router: Router){ }
goToVotes($myParam: string = ''): void {
const navigationDetails: string[] = ['/votes'];
if($myParam.length) {
navigationDetails.push($myParam);
}
this.router.navigate(navigationDetails);
}
}
Example 3: how click button and redirect angular
<button class="btn" (click)="goToVotes()">Check votes</button>