Q51. What are the lifecycle hooks in the Vue 3 Composition API and how are they used?
In **Composition API**, lifecycle hooks are functions you call **inside the `setup()` function** to hook into different stages of a component's lifecycle. These hooks rep...