Vue.js 2 Fundamentals
🚧 PLEASE NOTE: An updated version of this course is available! see the Vue.js 3 Fundamentals with the Options API course. This course is outdated!

Computed Properties

Computed properties are another powerful feature from Vue that allows us to transform or perform calculations on our data and then easily reuse the result as an up-to-date variable in our template. Computed properties are very useful and should replace complex in-template expressions.

While this explanation without any code examples might not make much sense right now, it surely will after you've watched this lessons on computed properties.