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
Suggests that watchEffect can be used in place of watch.
However this is not the case because watchEffect callback does not support a Promise<void> return so TS will not allow compilation.
If the page is saved while debugging, and the props have not changed, with watchEffect the function that is supposedly "watched" automatically even though nothing has changed. The same does not happen with watch.
The documentation stored here: https://vuejs.org/guide/essentials/watchers.html#watcheffect
Suggests that
watchEffect
can be used in place ofwatch
.However this is not the case because
watchEffect
callback does not support aPromise<void>
return so TS will not allow compilation.If the page is saved while debugging, and the props have not changed, with
watchEffect
the function that is supposedly "watched" automatically even though nothing has changed. The same does not happen withwatch
.For example take the example
store.ts
: https://gist.github.com/craigcrawfordcts/f4923edf768a01b11c9a055acf96f20aThe following works, and does not re-fetch if you attempt to re-save the file but the props have not changed:
However, none of the following work with
watchEffect
because it does not support Promises.In this first example, the function is called every time I save a change in a vue file, but the above does not re-call it:
This also does not work, as TS doesn't like the
Promise<void>
return:Can't use await since it's not an async, also not valid:
So what if we make it an async?
Nope... Only
watch
works. So how do we makewatchEffect
automagically watch our props as the documentation states?The text was updated successfully, but these errors were encountered: