Refactor on VirtualScroller
parent
1ac34d77ca
commit
1983225b2f
|
@ -95,8 +95,10 @@ export default {
|
||||||
loading(newValue) {
|
loading(newValue) {
|
||||||
this.d_loading = newValue;
|
this.d_loading = newValue;
|
||||||
},
|
},
|
||||||
items() {
|
items(newValue, oldVal) {
|
||||||
this.init();
|
if (!oldVal || oldVal.length !== (newValue || []).length) {
|
||||||
|
this.init();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -512,7 +514,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue