diff --git a/documentation/docs/03-template-syntax/11-bind.md b/documentation/docs/03-template-syntax/11-bind.md index c23f3b52327c..f7ab280020d8 100644 --- a/documentation/docs/03-template-syntax/11-bind.md +++ b/documentation/docs/03-template-syntax/11-bind.md @@ -75,7 +75,7 @@ In the case of a numeric input (`type="number"` or `type="range"`), the value wi

{a} + {b} = {a + b}

``` -If the input is empty or invalid (in the case of `type="number"`), the value is `undefined`. +If the input is empty or invalid (in the case of `type="number"`), the value is `null`. Since 5.6.0, if an `` has a `defaultValue` and is part of a form, it will revert to that value instead of the empty string when the form is reset. Note that for the initial render the value of the binding takes precedence unless it is `null` or `undefined`.