Guest User

Untitled

a guest
Jul 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <form (ngSubmit)="onAddProduct(f)" #f="ngForm" novalidate>
  2.  
  3. onAddProduct(form) {
  4. if (form.valid) {
  5. console.log(form.value.productName);
  6. }
  7. }
Add Comment
Please, Sign In to add comment