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:
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: