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
and then on an ajax call i do something like this:
methods: {
async loadProjekte() {
this.loading = true;
this.projekte = await Projekt.get(); // call to server by ajax
this.loading = false;
},
},
This works very well, but on short ajax calls, the overlay pops up and hides only microseconds later.
It would be very nice to have an option to show() or a global option, that delays the display for some time for me:
this.$loading.show({showDelay: 500});
The text was updated successfully, but these errors were encountered:
I have something like this in my code:
and then on an ajax call i do something like this:
This works very well, but on short ajax calls, the overlay pops up and hides only microseconds later.
It would be very nice to have an option to show() or a global option, that delays the display for some time for me:
The text was updated successfully, but these errors were encountered: