Vue JS How it works
Lifecycle hooks
- a lifecycle hook allows us to register a callback to be called at certain times of the component's lifecycle.
- There are other hooks such as
onUpdatedandonUnmounted. - Check out the Lifecycle Diagram for more details.
- Vue lifecycle hooks diagram from learnvue.co

- If you want an in-depth guide on Vue lifecycle hooks, check out this article.