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
See vuejs/rfcs#78 (comment)
I have found some watch callback timing that does not match up with the current RFC.
watch
Specifically,
watch(source, effect, { flush: 'post' })
watch(effect, { flush: 'pre' })
The text was updated successfully, but these errors were encountered:
64ea4a6
No branches or pull requests
See vuejs/rfcs#78 (comment)
I have found some
watch
callback timing that does not match up with the current RFC.Specifically,
watch(source, effect, { flush: 'post' })
triggers before DOM updatewatch(effect, { flush: 'pre' })
triggers after DOM updateThe text was updated successfully, but these errors were encountered: