-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Effect cannot track ref in scope #13656
Copy link
Copy link
Closed
Labels
❗ p4-importantPriority 4: this fixes bugs that violate documented behavior, or significantly improves perf.Priority 4: this fixes bugs that violate documented behavior, or significantly improves perf.regressionscope: reactivity
Description
Vue version
3.6 alpha 1
Link to minimal reproduction
Steps to reproduce
- Enter text and check console.log
- Switch between 3.5 and 3.6 versions
What is expected?
Effect track ref in scope
watchEffect(() => {
const scope = new EffectScope()
scope.run(() => {
console.log('watchEffect', msg.value)
})
})What is actually happening?
Effect cannot track ref in scope
System Info
Any additional comments?
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
❗ p4-importantPriority 4: this fixes bugs that violate documented behavior, or significantly improves perf.Priority 4: this fixes bugs that violate documented behavior, or significantly improves perf.regressionscope: reactivity