Delay the Loading.hide()
-
What do you think about adding a parameter/configuration to the Loading.hide()? For instance, I think delay property would be nice here to adjust how quick the overlay disappears, similar to how it is shown.
this.$q.loading.hide({delay:1000})
For now I will just use this everywhere, but a option would be nice
setTimeout(() => { this.$q.loading.hide() }, 1000)