#todayilearned

by @jm3 · aka John Manoogian3

Frequent, bite-size mini-milestone updates as I fast-forward merge* my front-end web development skills up to 2019 levels. Learn more

Computed properties in Vue

Posted at — Jun 2, 2019

Computed properties in Vue are cached based on their “reactive dependencies”, aka any VM (ViewModel) data they use.

Unless some of the VM data changes, the computed property value will be cached and returned instantly.