I have an "home" component where I iterate my mangas (mangas is an array of objects)
like this:
<div *ngFor="let manga of mangas">
<h1> {{ manga.title }} </h1>
<button routerLink="/manga/{{ manga.title }}"> read the manga </button>
</div>
(it's better than this but it's just to make an example)
so, how can I pass the entire "manga" object to the new route?
(i don't wanna to pass the entire array)