Vue 3 Computed Properties vs Methods: When Caching Actually Matters
Vue 3 computed properties cache results and re-run only when tracked dependencies change; template method calls re-run on every render. A worked example shows when that difference actually matters.