Skip to content
New issue

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

fix: only allow watch callbacks to be self-triggering #724

Closed
wants to merge 1 commit into from

Conversation

ygj6
Copy link
Member

@ygj6 ygj6 commented Jun 5, 2021

fix #633

@@ -248,6 +250,21 @@ function createWatcher(
// effect watch
if (cb === null) {
let running = false
const { Dep } = getVueInternalClasses()
Dep.prototype.notify = function notify() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should avoid patching prototype methods.

This patching of the prototype will run every time we call a watch, because of the scoped running it might cause problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

watchEffect is not same as vue3 watchEffect?
2 participants