@monoui/vuejs 1.1.24 → 1.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Table/Table.vue +10 -3
package/package.json
CHANGED
|
@@ -234,7 +234,11 @@
|
|
|
234
234
|
</slot>
|
|
235
235
|
<slot name="pagination-center" v-bind="settings">
|
|
236
236
|
<div>
|
|
237
|
-
<span
|
|
237
|
+
<span
|
|
238
|
+
v-show="
|
|
239
|
+
settings.totalItemCount && !refreshButton
|
|
240
|
+
"
|
|
241
|
+
>
|
|
238
242
|
{{ settings.totalItemCount }} rows
|
|
239
243
|
</span>
|
|
240
244
|
<mui-button
|
|
@@ -245,7 +249,10 @@
|
|
|
245
249
|
@click="refresh"
|
|
246
250
|
>
|
|
247
251
|
<i class="fas fa-sync"></i>
|
|
248
|
-
Refresh
|
|
252
|
+
Refresh
|
|
253
|
+
<span v-show="settings.totalItemCount">
|
|
254
|
+
{{ settings.totalItemCount }} Rows
|
|
255
|
+
</span></mui-button
|
|
249
256
|
>
|
|
250
257
|
</div>
|
|
251
258
|
</slot>
|
|
@@ -354,7 +361,7 @@ export default {
|
|
|
354
361
|
refreshButton: {
|
|
355
362
|
type: Boolean,
|
|
356
363
|
required: false,
|
|
357
|
-
default:
|
|
364
|
+
default: true
|
|
358
365
|
},
|
|
359
366
|
pagination: {
|
|
360
367
|
type: Object,
|