Q:

how click button and redirect angular

<a class="btn" routerLink="/votes">Check votes</a>
0
<button class="btn" (click)="goToVotes()">Check votes</button>
0
import { Component } from '@angular/core';
import { Router } from '@angular/router';
// component details here...
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);
  }
}
0

New to Communities?

Join the community