From Vue.js in Action by Erik Hanchett
Because computed properties are typically calculated using instance data, their return value is updated automatically when the underlying data changes. Any view markup bound to the computed property is updated to reflect the new value as well.
This behavior is at the heart of the update cycle within the greater Vue instance lifecycle—let’s have a look…
From Vue.js in Action by Erik Hanchett
This article explores how to get started with Vue.js and gives insight into some of its core workings.