Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. /// HTML ///
  2. <tr *ngFor="let book of books" (click)="selectBook(book)">
  3.  
  4. /// Typyescript ///
  5. selectBook(book: Book): void {
  6. this.bookSelected.emit(book);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement