We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9fa2b4 commit 2358403Copy full SHA for 2358403
src/directives/public/bind.js
@@ -86,7 +86,9 @@ module.exports = {
86
87
handleSingle: function (attr, value) {
88
if (inputProps[attr] && attr in this.el) {
89
- this.el[attr] = value
+ this.el[attr] = attr === 'value'
90
+ ? (value || '') // IE9 will set input.value to "null" for null...
91
+ : value
92
}
93
// set model props
94
var modelProp = modelProps[attr]
0 commit comments