Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ngOnInit() {
  2. this.productForm = this.formBuilder.group({
  3. 'nome_produto' : [null, Validators.required],
  4. 'desc_produto' : [null, [Validators.required, Validators.minLength(4)]],
  5. 'preco_produto' : [null, Validators.required]
  6. });
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement