Skip to content

Instantly share code, notes, and snippets.

@zurcacielos
Created February 22, 2023 10:28
Show Gist options
  • Save zurcacielos/fa02c8f2d7337191f4d90d50adc47a56 to your computer and use it in GitHub Desktop.
Save zurcacielos/fa02c8f2d7337191f4d90d50adc47a56 to your computer and use it in GitHub Desktop.
reactive form
ngOnInit(): void {
this.form = this.formBuilder.group({
nombre: ['', {
validators: [Validators.required, Validators.minLength(3), primeraLetraMayuscula()]
}]
});
if (this.modelo !== undefined){
this.form.patchValue(this.modelo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment