Fixed #5593 - Hydration defects

This commit is contained in:
tugcekucukoglu 2024-04-16 12:35:02 +03:00
parent 8365a30f5b
commit 6615f31d8a
30 changed files with 120 additions and 151 deletions

View file

@ -221,11 +221,8 @@ export default {
};
},
watch: {
'$attrs.id': {
immediate: true,
handler: function (newValue) {
this.id = newValue || UniqueComponentId();
}
'$attrs.id': function (newValue) {
this.id = newValue || UniqueComponentId();
},
selection(newValue) {
this.d_selection = newValue;
@ -247,6 +244,8 @@ export default {
this.destroyMedia();
},
mounted() {
this.id = this.id || UniqueComponentId();
if (this.responsive) {
this.createStyle();
this.initMedia();