InterviewSolution
Saved Bookmarks
| 1. |
What are the uses of computed properties in Vue.js? |
|
Answer» A computed property is one of the powerful features from Vue that enables US to transform our data by performing calculations on the VALUE of the data and then easily REUSING the result as an up-to-date variable in our template. Computed properties have the FOLLOWING usage:
|
|