1import { Component } from '@angular/core';
2import { Router } from '@angular/router';
3// component details here...
4export class MyComponent {
5 constructor(private router: Router){ }
6
7 goToVotes($myParam: string = ''): void {
8 const navigationDetails: string[] = ['/votes'];
9 if($myParam.length) {
10 navigationDetails.push($myParam);
11 }
12 this.router.navigate(navigationDetails);
13 }
14}
15