Open xiyangjun opened 7 years ago
I think the wrong code here
MultiElement.prototype._getCheckedValue = function _getCheckedValue () {
var value = [];
this._eachItems(function (item) {
if (!item.disabled && item.checked) {
value.push(item.value);
}
});
return value
};
vue & vue-validator version
2.0.3, 3.0.0-alpha.1
Reproduction Link
Steps to reproduce
checked test1 and test2
What is Expected?
expect => log out [1, 2]
What is actually happening?
actually =》 log out ["1", "2"]