docs(forms): add comment of the value (#29898)

PR Close #29898
This commit is contained in:
Ly-lns 2019-04-15 14:44:28 +08:00 committed by Alex Rickabaugh
parent bf031fc56b
commit d2c83ea81b
1 changed files with 3 additions and 1 deletions

View File

@ -159,7 +159,9 @@ export abstract class AbstractControl {
* The current value of the control.
*
* * For a `FormControl`, the current value.
* * For a `FormGroup`, the values of enabled controls as an object
* * For an enabled `FormGroup`, the values of enabled controls as an object
* with a key-value pair for each member of the group.
* * For a disabled `FormGroup`, the values of all controls as an object
* with a key-value pair for each member of the group.
* * For a `FormArray`, the values of enabled controls as an array.
*