@mixd-id/web-scaffold 0.1.230406292 → 0.1.230406293
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/package.json +1 -1
- package/src/components/List.vue +2 -2
package/package.json
CHANGED
package/src/components/List.vue
CHANGED
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
</div>
|
|
121
121
|
</slot>
|
|
122
122
|
|
|
123
|
-
<div v-if="readyState ===
|
|
123
|
+
<div v-if="readyState === 2" class="flex-1 flex items-center justify-center">
|
|
124
124
|
<svg class="animate-spin" width="36" height="36" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>
|
|
125
125
|
</div>
|
|
126
126
|
|
|
@@ -314,7 +314,7 @@ export default{
|
|
|
314
314
|
this.preset.columns = JSON.parse(JSON.stringify(this.config.columns))
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
-
this.readyState =
|
|
317
|
+
this.readyState = 2
|
|
318
318
|
return this.socket.send(this.src, {
|
|
319
319
|
...this.preset,
|
|
320
320
|
itemsPerPage: this.data.itemsPerPage,
|