-
Notifications
You must be signed in to change notification settings - Fork 165
Open
Labels
Description
Consider the following method:
public string Hello(string input) {
return "Hello " + input;
}
And then calling it using dispatch
const data = dotnetify.$dispatch({ Hello: "world" });
Data is obviously undefined, could there be a version of $dispatch that returns a promise with the result?
Use case is obviously being able to display loading indicators when fetching information and/or fetching data that does not belong in the usual state of the view model eg. Login with simply a boolean for result.
Thoughts?
parksj10, makp0, ensemblebd and DG4ever