Fix #5412 - Twice render if attribute id not defined

This commit is contained in:
i7slegend 2024-03-27 05:37:32 +03:00
parent 7c2e3eac7e
commit 3a134dd561
30 changed files with 162 additions and 131 deletions

View file

@ -79,8 +79,11 @@ export default {
};
},
watch: {
'$attrs.id': function (newValue) {
this.id = newValue || UniqueComponentId();
'$attrs.id': {
immediate: true,
handler: function (newValue) {
this.id = newValue || UniqueComponentId();
},
},
activeItemPath(newPath) {
if (ObjectUtils.isNotEmpty(newPath)) {
@ -96,7 +99,6 @@ export default {
container: null,
menubar: null,
mounted() {
this.id = this.id || UniqueComponentId();
this.bindMatchMediaListener();
},
beforeUnmount() {