Life cycle classification
From component creation , data initialization , mounting , updating , and destruction , this is the so-called life cycle of a component. beforeCreate
createdIt is called after the instance has been created. At this step, the instance has completed the following configurations: data observation, property and method calculations, watch/event event callbacks, and completed data initialization, but el has not. However, the hanging stage has not started yet, and the $el property is not visible yet. This is a common life cycle because you can call methods in methods, change the data in data, and the changes can be reflected on the page through Vue's responsive binding, get the calculated properties in computed, etc. Usually we can pre-process the instance here beforeMount (before mounting)It is called before the hang starts, and the related render function is called for the first time (virtual DOM). The instance has completed the following configurations: compiling the template, generating html from the data in the data and the template, and completing the el and data initialization. Note that it has not yet been hung on the html to the page. mountedMounting is completed, that is, the HTML in the template is rendered to the HTML page. At this time, you can generally do some ajax operations, and mounted will only be executed once. beforeUpdateCalled before data is updated, before the virtual DOM is re-rendered and patched. Further changes to the state can be made in this hook without triggering an additional re-rendering process. updatedThis hook is only called when the virtual DOM is re-rendered and patched due to data changes. When called, the component DOM has been updated, so operations that depend on the DOM can be performed. However, in most cases, changing the state during this period should be avoided, as this may cause an infinite loop of updates. This hook is not called during server-side rendering. beforeDestroy Called before the instance is destroyed, the instance is still fully usable. destroyed Called after the instance is destroyed. After the call, all event listeners will be removed and all child instances will be destroyed. This hook is not called during server-side rendering. Execution order (diagram)This is the end of this article about the detailed explanation of the differences in the Vue life cycle. For more relevant Vue life cycle content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Analysis of mysql temporary table usage [query results can be stored in temporary tables]
>>: Analysis of centos6 method of deploying kafka project using docker
This article records the installation and configu...
The MySQL development team officially released th...
If you have developed DApps on Ethereum, you may ...
tomcat is an open source web server. The web base...
Preface In WeChat applet development (native wxml...
Introduction The default source of Ubuntu is not ...
1. Business Scenario I have been doing developmen...
I will not introduce what CUDA is, but will direc...
Use HTML to create complex tables. Complex tables...
Page: base: <template> <div class="...
Table of contents Preface Dynamic SQL 1. Take a l...
Table of contents 1. Troubleshooting and locating...
Linux file permissions First, let's check the...
This article shares the specific code for impleme...
top command is the best command that everyone is ...