pull/7157/head
tugcekucukoglu 2025-01-27 18:05:01 +03:00
parent 4852576beb
commit b6c7b434b1
1 changed files with 5 additions and 3 deletions

View File

@ -92,9 +92,11 @@ export default {
}
},
items: {
handler(newValue) {
this.init();
this.calculateAutoSize();
handler(newValue, oldValue) {
if (!oldValue || oldValue.length !== (newValue || []).length) {
this.init();
this.calculateAutoSize();
}
},
deep: true
},