You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A pull-down refresh and pull-up loadmore scroll component for Vue.js.
7
+
8
+
Easy to use by providing simple api. Unlike other component libraries, it uses the browser itself to scroll instead of js, so it has a smaller code size but does not lose the user experience.
The `on-refresh` and `on-loadmore` will be Emitted when pull refresh or scroll to the bottom, you should need to execute the callback function `done()` after processing the data request.
71
+
72
+
If you don't need refresh, only not to bind `on-refresh`.
73
+
74
+
When the data request is finished, the data of `finished` you can changed to true, then will show `finished-text`.
75
+
76
+
```js
77
+
exportdefault {
78
+
data() {
79
+
return {
80
+
list: [],
81
+
page:1,
82
+
pageSize:10,
83
+
finished:false
84
+
};
85
+
},
86
+
mounted() {
87
+
this.fetch();
88
+
},
89
+
methods: {
90
+
onRefresh(done) {
91
+
this.list= [];
92
+
this.page=1;
93
+
this.finished=false;
94
+
this.fetch();
95
+
96
+
done();
97
+
},
98
+
99
+
onLoad(done) {
100
+
if (this.page<=10) {
101
+
this.fetch();
102
+
} else {
103
+
// all data loaded
104
+
this.finished=true;
105
+
}
106
+
done();
107
+
},
108
+
109
+
fetch() {
110
+
for (let i =0; i <this.pageSize; i++) {
111
+
this.list.push(this.list.length+1);
112
+
}
113
+
this.page++;
114
+
}
115
+
},
116
+
}
117
+
```
118
+
119
+
### Load Error Info
120
+
121
+
```html
122
+
<vue-loadmore
123
+
:on-loadmore="onLoad"
124
+
:finished="finished"
125
+
:error.sync="error">
126
+
<divv-for="(item, i) of list":key="i"></div>
127
+
</vue-loadmore>
128
+
```
129
+
130
+
```js
131
+
exportdefault {
132
+
data() {
133
+
return {
134
+
list: [],
135
+
finished:false,
136
+
error:false,
137
+
};
138
+
},
139
+
methods: {
140
+
onLoad() {
141
+
fetchSomeThing().catch(() => {
142
+
this.error=true;
143
+
});
144
+
},
145
+
},
146
+
};
147
+
```
148
+
149
+
## API
150
+
151
+
### Props
152
+
153
+
| Attribute | Description | Type | Default |
154
+
| --- | --- | --- | --- |
155
+
| on-refresh | Will be Emitted when pull refresh |_function_| - |
156
+
| pulling-text | The Text when pulling in refresh |_string_|`Pull down to refresh`|
157
+
| loosing-text | The Text when loosing in refresh |_string_|`Loosing to refresh`|
158
+
| loading-text | The Text when loading in refresh |_string_|`Refreshing`|
159
+
| success-text | The Text when loading success in refresh |_string_|`Refresh success`|
160
+
| show-success-text | Whether to show `success-text`|_boolean_|`true`|
161
+
| pull-distance | The distance to trigger the refresh status |_number \| string_|`50`|
162
+
| head-height | The height of the area of the refresh shows |_number \| string_|`50`|
163
+
| animation-duration | Animation duration of the refresh |_number \| string_|`200`|
164
+
| on-loadmore | Will be Emitted when scroll to the bottom |_function_| - |
165
+
| immediate-check | Whether to check loadmore position immediately after mounted |_boolean_|`true`|
166
+
| load-offset | The `on-loadmore` will be Emitted when the distance from the scroll bar to the bottom is less than the `load-offset`|_number \| string_|`50`|
167
+
| finished | Whether the data is loaded |_boolean_|`false`|
168
+
| error | Whether the data is loaded error, the `on-loadmore` will be Emitted only when error text clicked, the `sync` modifier is needed |_boolean_|`false`|
169
+
| loading-text | The Text when loading in loaded |_string_|`Loading`|
170
+
| finished-text | The Text when the data is loaded |_string_|`No more data`|
171
+
| error-text | The Text when error loaded |_string_|`Request failed, click to reload`|
172
+
173
+
### Methods
174
+
175
+
Use ref to get List instance and call instance methods.
A pull-down refresh and pull-up loadmore scroll component for Vue.js.
6
+
一个Vue.js 的下拉刷新和上拉加载组件。
7
7
8
-
Easy to use by providing simple api. Unlike other component libraries, it uses the browser itself to scroll instead of js, so it has a smaller code size but does not lose the user experience.
The `on-refresh`and `on-loadmore`will be Emitted when pull refresh or scroll to the bottom, you should need to execute the callback function `done()` after processing the data request.
If you don't need refresh, only not to bind `on-refresh`.
72
+
如果你不需要刷新,只需要不绑定`on-refresh`。
73
73
74
-
When the data request is finished, the data of `finished` you can changed to true, then will show `finished-text`.
74
+
当数据请求完成后,你可以将`finished`的数据改为true,这样就会显示`没有更多了`。
75
75
76
76
```js
77
77
exportdefault {
@@ -116,7 +116,7 @@ export default {
116
116
}
117
117
```
118
118
119
-
### Load Error Info
119
+
### 错误提示
120
120
121
121
```html
122
122
<vue-loadmore
@@ -152,36 +152,36 @@ export default {
152
152
153
153
| Attribute | Description | Type | Default |
154
154
| --- | --- | --- | --- |
155
-
| on-refresh |Will be Emitted when pull refresh|_function_| - |
156
-
| pulling-text |The Text when pulling in refresh |_string_|`Pull down to refresh`|
157
-
| loosing-text |The Text when loosing in refresh |_string_|`Loosing to refresh`|
158
-
| loading-text |The Text when loading in refresh |_string_|`Refreshing`|
159
-
| success-text |The Text when loading success in refresh |_string_|`Refresh success`|
160
-
| show-success-text |Whether to show `success-text`|_boolean_|`true`|
161
-
| pull-distance |The distance to trigger the refresh status|_number \| string_|`50`|
162
-
| head-height |The height of the area of the refresh shows|_number \| string_|`50`|
163
-
| animation-duration |Animation duration of the refresh|_number \| string_|`200`|
164
-
| on-loadmore |Will be Emitted when scroll to the bottom|_function_| - |
165
-
| immediate-check |Whether to check loadmore position immediately after mounted|_boolean_|`true`|
166
-
| load-offset |The `on-loadmore` will be Emitted when the distance from the scroll bar to the bottom is less than the `load-offset`|_number \| string_|`50`|
167
-
| finished |Whether the data is loaded|_boolean_|`false`|
168
-
| error |Whether the data is loaded error, the `on-loadmore` will be Emitted only when error text clicked, the `sync` modifier is needed|_boolean_|`false`|
169
-
| loading-text |The Text when loading in loaded |_string_|`Loading`|
170
-
| finished-text |The Text when the data is loaded |_string_|`No more data`|
171
-
| error-text |The Text when error loaded |_string_|`Request failed, click to reload`|
172
-
173
-
### Methods
174
-
175
-
Use ref to get List instance and call instance methods.
0 commit comments