Skip to content

Vue Reactivity and State

Vue’s reactivity system tracks dependencies and updates the rendered UI when underlying state changes.

  • reactive component state
  • computed values for derived data
  • watchers for side-effect-oriented reactions

Understanding when to derive data and when to react to changes is central to writing maintainable Vue code.