Skip to content
Snippets Groups Projects
Commit 274f81c5 authored by Evan You's avatar Evan You
Browse files

fix(reactivity): allow effect trigger inside no-track execution contexts

fix #804
parent d6bf9ffd
Branches
Tags
No related merge requests found
......@@ -231,7 +231,7 @@ function addRunners(
) {
if (effectsToAdd !== void 0) {
effectsToAdd.forEach(effect => {
if (effect !== activeEffect) {
if (effect !== activeEffect || !shouldTrack) {
if (effect.options.computed) {
computedRunners.add(effect)
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment