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

@ -106,13 +106,13 @@ export default {
};
},
watch: {
menuId: {
immediate: true,
handler(newValue) {
this.id = newValue || UniqueComponentId();
}
menuId(newValue) {
this.id = newValue || UniqueComponentId();
}
},
mounted() {
this.id = this.id || UniqueComponentId();
},
methods: {
getItemId(index) {
return `${this.id}_${index}`;