1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

Add content for lifecycle hooks

This commit is contained in:
Kamran Ahmed
2022-08-09 21:11:44 +04:00
parent c82e97a969
commit 68da2c7229

View File

@@ -1 +1,6 @@
# Lifecycle hooks
# Lifecycle Hooks
Each Vue component instance goes through a series of initialization steps when it's created - for example, it needs to set up data observation, compile the template, mount the instance to the DOM, and update the DOM when data changes. Along the way, it also runs functions called lifecycle hooks, giving users the opportunity to add their own code at specific stages.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://vuejs.org/guide/essentials/lifecycle.html'>Life Cycle Hooks</BadgeLink>