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 6e53384 commit fc98f8eCopy full SHA for fc98f8e
example/index.html
@@ -36,16 +36,11 @@
36
distance: 100,
37
list: []
38
},
39
- ready: function () {
40
- for (var i = 0; i < 50; i++) {
41
- this.list.push(i + 1);
42
- }
43
- },
44
methods: {
45
onInfinite: function () {
46
setTimeout(function () {
47
var temp = [];
48
- for (var i = this.list.length; i <= this.list.length + 20; i++) {
+ for (var i = this.list.length; i <= this.list.length + 10; i++) {
49
temp.push(i);
50
}
51
0 commit comments