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
I currently use this plugin to get resources from the server. I want to display a loading indicator while content is refreshing / updating.
To do this, I'd like to have a property that indicates if a asyncComputed property is being recomputed. Something like:
asyncComputed{someData: ...
}
...
this.someData// the computed valuethis.someDataIsUpdating// implicit property, true while the computed value is updating
What do you think of this concept? Is it good to have those implicit properties or do you have a better idea? Should I implement it and create a PR?
The text was updated successfully, but these errors were encountered:
I currently use this plugin to get resources from the server. I want to display a loading indicator while content is refreshing / updating.
To do this, I'd like to have a property that indicates if a
asyncComputed
property is being recomputed. Something like:What do you think of this concept? Is it good to have those implicit properties or do you have a better idea? Should I implement it and create a PR?
The text was updated successfully, but these errors were encountered: