0👍
You are setting the value of this.isLoading
to your setTimeout
:
this.isLoading = setTimeout(() => {
this.isLoading = false;
}, 3000);
Change this to:
setTimeout(() => {
this.isLoading = false;
}, 3000);
- [Vuejs]-Splash screen's letters are double in ionic
- [Vuejs]-Can you retreive the current logged in user from JWT token?
Source:stackexchange.com