Te doy la bienvenida a nuestro sitio web, en este sitio hallarás la solucíon de lo que estabas buscando.
Ejemplo 1: cómo hacer clic en el botón y redirigir angular
<aclass="btn"routerLink="/votes">Check votesa>
Ejemplo 2: cómo hacer clic en el botón y redirigir angular
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);
Comentarios y puntuaciones del artículo
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)