Q1. What is the difference between the Options API and the Composition API in Vue 3?
The Options API organises component logic into fixed options such as data, methods, computed, watch and lifecycle hooks. The Composition API organises the same logic insi...