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
fix(reactivity): prevent unnecessary computed recalculations in dev mode
Fix computed properties being recalculated unnecessarily in development
mode when unrelated reactive values change, while production mode works
correctly. This issue was caused by version lag in dependency tracking
during development builds.
The fix introduces a conservative dependency check that:
- Only considers dependencies truly dirty when version diff > 1
- Syncs link versions to prevent accumulating lag
- Maintains consistency between dev and production behavior
- Preserves all debugging functionality
Closes issue with computed performance regression in development mode.
0 commit comments