A brief introduction to vue life cycle hook functions (code example)
This article brings you a brief introduction (code example) about the vue life cycle hook function. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Let’s start with a picture
The following picture is the officially displayed life cycle diagram
The life cycle hook function of the Vue instance ( 8)
1. beforeCreate
I just created a new component and cannot access the data and the real dom. Basically, this seems to be unable to do anything.
2. created
The data attribute has been assigned a value, and it can The data is modified but updated will not be triggered. Here you can obtain the initial data
3. beforeMount
render is ready to render. The virtual dom in the function has been created. Changing the data at this time will not trigger update. , Here you can obtain the initial data
4. mounted
Start render, render the real DOM, execute the mounted hook function, the component has appeared in the page, and the data and events have been processed by the DOM. Here you can change to perform real DOM operations
5. beforeUpdate
component, a function that will be executed before the instance data is updated. The virtual DOM will rebuild the virtual DOM and re-render it after comparing it with the last virtual DOM. Remember not to modify data otherwise an infinite loop will occur
6. updated
Function that will be executed after updating. Remember not to modify data otherwise an infinite loop will occur
7. beforeDestroy
Before the instance is destroyed The function to be executed, to do the aftermath work, clear the timer, clear the non-instruction bound events, etc.
8. destroyed
The function that will be executed after the instance is destroyed can also do the aftermath work.
<template> <div class="hello"> Hello World! </div> </template> <script> export default { name: "HelloWorld", data() { return { msg: "Welcome to Your Vue.js App" }; }, beforeCreate: function() { console.log("data属性光声明没有赋值的时候"); }, created: function() { console.log("data属性完成了赋值"); }, beforeMount: function() { console.log("页面上的{{name}}还没有被渲染成真正的数据"); }, mounted: function() { console.log("页面上的{{name}}被渲染成真正的数据"); }, beforeUpdate: function() { console.log(" 数据(data属性)更新之前会执行的函数"); }, updated: function() { console.log("数据(data属性)更新完会执行的函数"); }, beforeDestroy: function() { console.log("实例被销毁之前会执行的函数"); }, destroyed: function() { console.log("实例被销毁后会执行的函数"); } }; </script> <style scoped> </style>
Console has such an output sequence:
This is roughly the order in which life cycle hook functions are executed, including the fact that I used angular to develop the same as vue. Also has its own life cycle hook function.
The life cycle is simply a process from creation to initialization to destruction of a component. In this process, with these life cycle hook functions, we can operate the entire component more conveniently.
The above is the detailed content of A brief introduction to vue life cycle hook functions (code example). For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...
