I set the path in touting:
{ path:'home', conponent:homecompnent; }
app.component.html: <button(click)="routerLink=/home"
This is an error
Want to go to the home page while clicking?
Thank you
I solved it app.component
<button (click)="goToHome('home')"/>
app.component.ts
constructor(private router:Router){}
GOToHome(_pageName:string):void{
this.router.navigate[`${_pageName}'];
app-routing
{path:'home',
component:homecomponent
},