vue file updates selectGroup and form.js
This commit is contained in:
@ -420,14 +420,14 @@ export default {
|
||||
},
|
||||
value: {
|
||||
type: [String, Number, Array],
|
||||
default: null,
|
||||
default: '',
|
||||
description: "Selectbox selected value"
|
||||
},
|
||||
options: null,
|
||||
|
||||
model: {
|
||||
type: [String, Number],
|
||||
default: null,
|
||||
default: '',
|
||||
description: "Selectbox selected model"
|
||||
},
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user