[Vuejs]-Parent bind boolean but child recive number

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);

Leave a comment