feat: getting details of manga

This commit is contained in:
2024-07-05 13:24:36 +03:00
parent 37149c83c4
commit 7eff09765b
5 changed files with 58 additions and 12 deletions

View File

@@ -23,6 +23,12 @@ export class HomeComponent implements OnInit, OnDestroy {
});
}
getDetails(slug_url: string) {
this.searchService.getDetails(slug_url).subscribe((data) => {
console.log(data);
});
}
ngOnDestroy(): void {
this.subscription.unsubscribe();
}