We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the shouldUpdate() function for my asyncComputed calls, the initial state of
shouldUpdate()
asyncCOmputed.thingImFetching.updating = true, even if the shouldUpdate() function returns false.
asyncCOmputed.thingImFetching.updating = true
Here's a code pen with an example: https://codepen.io/fredlintz5/pen/GRZxzbp
If I wrap the return statement with an if statement instead of using shouldUpdate() then asyncCOmputed.thingImFetching.updating = false as expected
if
asyncCOmputed.thingImFetching.updating = false
This is an issue when Im trying to use a loader on the page, and I'm watching the updating status of my asyncComputed Calls.
updating
VUE 2 Latest Version of asyncComputed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the
shouldUpdate()
function for my asyncComputed calls, the initial state ofasyncCOmputed.thingImFetching.updating = true
, even if theshouldUpdate()
function returns false.Here's a code pen with an example: https://codepen.io/fredlintz5/pen/GRZxzbp
If I wrap the return statement with an
if
statement instead of usingshouldUpdate()
thenasyncCOmputed.thingImFetching.updating = false
as expectedThis is an issue when Im trying to use a loader on the page, and I'm watching the
updating
status of my asyncComputed Calls.VUE 2
Latest Version of asyncComputed.
The text was updated successfully, but these errors were encountered: