Skip to content

Commit a961225

Browse files
authored
v-model.number: clarify unexpected behavior (#2975)
* v-model.number: clarify unexpected behavior * v-model.number: clarify unexpected behavior (not a warning!)
1 parent ac7a921 commit a961225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/forms.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ If you want user input to be automatically typecast as a number, you can add the
442442
<input v-model.number="age" />
443443
```
444444

445-
If the value cannot be parsed with `parseFloat()`, then the original value is used instead.
445+
If the value cannot be parsed with `parseFloat()`, then the original (string) value is used instead. In particular, if the input is empty (for instance after the user clearing the input field), an empty string is returned. This behavior differs from the [DOM property `valueAsNumber`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement#valueasnumber).
446446

447447
The `number` modifier is applied automatically if the input has `type="number"`.
448448

0 commit comments

Comments
 (0)