Introduction
We use manual reactivity to control when Vue updates the screen. It helps us update only when we want, saving work and making apps faster.
When you want to update the screen only after several changes happen.
When you need to track changes in a value but update the UI manually.
When you want to optimize performance by avoiding automatic updates.
When you want to control exactly when a reactive value triggers updates.