We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bc4904 commit 102c06cCopy full SHA for 102c06c
packages/vue/src/components/result/ReactiveList.jsx
@@ -318,6 +318,11 @@ const ReactiveList = {
318
this.setPage(newVal >= 0 ? newVal : 0);
319
}
320
},
321
+ isLoading(newVal, oldVal) {
322
+ if (newVal !== oldVal) {
323
+ this.$emit('loading', newVal);
324
+ }
325
+ },
326
327
mounted() {
328
if (this.defaultPage < 0 && this.currentPage > 0) {
0 commit comments