svnshikhil
5/25/2018 - 5:30 AM

Vue Js

Getting Started with Vue

There are different lifecycle hooks Vue provide:

I have listed few are :

1. beforeCreate: Called synchronously after the instance has just been initialized, before data observation and event/watcher setup.

2. created: Called synchronously after the instance is created. At this stage, the instance has finished processing the options which means the following have been set up: data observation, computed properties, methods, watch/event callbacks. However, the mounting phase has not been started, and the $el property will not be available yet.

3. beforeMount: Called right before the mounting begins: the render function is about to be called for the first time.

4. mounted: Called after the instance has just been mounted where el is replaced by the newly created vm.$el.

5. beforeUpdate: Called when the data changes, before the virtual DOM is re-rendered and patched.

6. updated: Called after a data change causes the virtual DOM to be re-rendered and patched.