Merge branch 'master' into v4

This commit is contained in:
tugcekucukoglu 2024-04-16 12:35:35 +03:00
commit 7055387be4
29 changed files with 116 additions and 146 deletions

View file

@ -93,11 +93,8 @@ export default {
};
},
watch: {
'$attrs.id': {
immediate: true,
handler: function (newValue) {
this.id = newValue || UniqueComponentId();
}
'$attrs.id': function (newValue) {
this.id = newValue || UniqueComponentId();
}
},
documentKeydownListener: null,
@ -132,6 +129,8 @@ export default {
this.mask = null;
},
mounted() {
this.id = this.id || UniqueComponentId();
if (this.breakpoints) {
this.createStyle();
}