Created
February 22, 2023 10:28
-
-
Save zurcacielos/fa02c8f2d7337191f4d90d50adc47a56 to your computer and use it in GitHub Desktop.
reactive form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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