Merge branch 'master' into v4

This commit is contained in:
tugcekucukoglu 2024-04-08 08:31:59 +03:00
commit 7681760b77
78 changed files with 6215 additions and 204 deletions

View file

@ -218,8 +218,11 @@ export default {
};
},
watch: {
'$attrs.id': function (newValue) {
this.id = newValue || UniqueComponentId();
'$attrs.id': {
immediate: true,
handler: function (newValue) {
this.id = newValue || UniqueComponentId();
}
},
suggestions() {
if (this.searching) {
@ -232,7 +235,6 @@ export default {
}
},
mounted() {
this.id = this.id || UniqueComponentId();
this.autoUpdateModel();
},
updated() {