Question 16
What are the differences between Vue's computed properties and methods?
Computed properties are cached based on their reactive dependencies, whereas methods are recalculated every time they are called.
Methods can be used to perform operations that do not need to be cached.
Computed properties can be used as methods if they require parameters.
Methods are always reactive and update automatically when their dependencies change.