The role of the vue.js life cycle function: 1. [beforeCreated()] means that the function is called before the instance is fully initialized; 2. [beforeMount()] At this time, the template has been compiled, but it is still Not rendered to the page; 3. [updated()] page completes data update.
【Recommended related articles: vue.js】
vue.js life cycle The role of the function:
Preface
The Vue instance has a complete life cycle, that is, from creation, initialization of data, compilation of templates, hanging in DOM, rendering-update- A series of processes such as rendering and unloading become the life cycle of the Vue instance. Hooks give you an opportunity to do certain processing at a certain stage.
The role of each function
beforeCreated():
indicates that the instance is fully initialized This function was called before;
created():
Vue’s data and methods at this time (data, methods ) have been initialized;
If you want to operate data and methods, you need to operate in this function at the earliest;
After created is completed Start compiling the html template, render the template string into dom, and finally generate a compiled final template in the memory;
The final template only exists in the memory and has not been rendered. to the page;
beforeMount():
At this time the template has been compiled but has not yet been rendered. Go to the page;
mounted():
At this point the page has been rendered and the dom node already exists in the document ;
If you want to operate the dom node, you need to do it in this function at the earliest;
After executing mounted, it means that the instance has been created. If there are no other operations, there will be no more activity in the memory;
beforeUpdate():
At this time the page has been Fully mounted, this function means that it will be executed when the page data changes;
-
When the data changes, the page data is not updated, but the data in data has been updated;
updated():
The page has completed data update;
beforeDestory():
When this function is executed, the Vue instance enters the destruction stage;
At this time, the filter, data and methods can still be used;
##destoryed():
- The components have been completely destroyed and all data , methods cannot be used
Detailed flow chart
## Related free learning recommendations:JavaScript (Video)
The above is the detailed content of What is the role of vue.js life cycle function. For more information, please follow other related articles on the PHP Chinese website!

VueUse 是 Anthony Fu 的一个开源项目,它为 Vue 开发人员提供了大量适用于 Vue 2 和 Vue 3 的基本 Composition API 实用程序函数。本篇文章就来给大家分享几个我常用的几个 VueUse 最佳组合,希望对大家有所帮助!

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章给大家整理分享8个GitHub上很棒的的 Vue 项目,都是非常棒的项目,希望当中有您想要收藏的那一个。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何使用VueRouter4.x?下面本篇文章就来给大家分享快速上手教程,介绍一下10分钟快速上手VueRouter4.x的方法,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
