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 d012be3 commit fc4daf1Copy full SHA for fc4daf1
src/LoadingComponent.vue
@@ -26,7 +26,6 @@
26
registerComponent(){
27
this.isLoading = true;
28
this.nbComponents++
29
- this.setTimeout();
30
},
31
32
componentEndLoading(){
@@ -54,14 +53,6 @@
54
53
return (this.nbFinished / this.nbComponents) * 100;
55
56
57
- setTimeout(){
58
- clearTimeout(this.timeout);
59
- this.timeout = setTimeout(() => {
60
- console.log("timeout");
61
- this.nbFinished = this.nbComponents;
62
- }, 2000)
63
- }
64
-
65
66
67
watch: {
0 commit comments