Question:What is the difference between computed properties and methods in Vue.js?
A Computed properties are cached based on their dependencies, while methods are not cached
B Computed properties are synchronous, while methods can be asynchronous
C Computed properties are used for data manipulation, while methods are used for event handling
D There is no difference between computed properties and methods
+ AnswerA
+ Report