vue file updates selectGroup and form.js

This commit is contained in:
Cüneyt Şentürk
2020-02-17 17:32:30 +03:00
parent d36b6a55e9
commit a3ba91f75e
6 changed files with 26 additions and 7 deletions

View File

@ -710,14 +710,15 @@ export default {
if (this.multiple) {
this.real_model = value;
} else {
this.real_model = value.toString();
//this.real_model = value.toString();
this.real_model = value;
}
},
model: function (value) {
if (this.multiple) {
this.real_model = value;
} else {
this.real_model = value.toString();
this.real_model = value;
}
}
},