The Vue life cycle (hook function) represents the process from creation to destruction of the Vue instance object. The Vue life cycle hook function is actually the option of the Vue instance. The values of these options are all functions, which represent the various stages of the instance's life from birth to death. As long as this stage is reached, it will be automatically triggered.
[Recommended course: Vue Tutorial]
What does the life cycle of Vue refer to?
In layman's terms, the life cycle of Vue means that after the web page we write with Vue runs in the browser, the code we write must be executed in memory. For example, we all write var vm = new Vue();
, which means new creates a Vue instance. From the creation of this instance until the instance dies when we close the browser, during this period of time, what does the Vue framework do, what does the Vue instance do, what is done first, what is done later, and what is the relationship between this series of things? Yes, this is the life cycle of Vue.
Vue’s life cycle is divided into three phases: creation phase, running phase, and destruction phase.
In the picture, I have marked each part of the life cycle and made some necessary explanations.
Process explanation (12 steps correspond to the operations in the picture):
1. Generate a Vue instance and execute the hook function beforeCreate( ). [Before instance creation]
2. Initialize the instance.
3. Mount the instance members to the view model and execute the hook function created(). [After the instance is created]
4. Determine whether there is an el object [the el object is used to indicate which area the view we control is].
5. If there is an el object, determine whether a template is used.
6. If a template is used, follow the method of compiling the template. If not, render the view area controlled by el as a template. Execute the hook function beforeMount(). [Before the instance is mounted]
7. Replace the original el view area with the changed new el view area. Execute the hook function Mounted() [after the instance is mounted].
8. Enter the running phase. The running phase is to perform some operations and execute the hook function beforeUpdate(). [Before data update]
9. After the operation is completed, render the data to the page and execute the hook function updated(). [After data update]
10. Enter the destruction phase and execute the hook function beforeDestroy() [Before instance destruction]
11. Perform destruction and disassemble the monitor, subcomponent and event listener .
12. The destruction is completed and the hook function destroyed() is executed. [After instance destruction]
The hook functions in the life cycle are events that Vue must execute during its life cycle. These events are actually functions.
Of course these events allow us programmers to write code so that when Vue's life cycle reaches this point, we can perform the operations we want.
The six hook functions in the creation phase and destruction phase of an instance are always executed once. Once executed, it will not be executed again.
Mentioned in the figure: We can access the instance members we defined only after the init Events are executed in the Vue life cycle, and this point is also the earliest point where the instance members can be accessed. To verify this, let's look at a piece of code.
<body> <div id="app"></div> //这里的路径为本机上的vue.js路径 <script src="./lib/vue.js"></script> <script> var vm = new Vue({ el : '#app', data : { msg : '我是初始值' }, methods : { show : function(){ console.log(this.msg); } }, beforeCreate(){ console.log(this.msg); }, created(){ console.log(this.msg); } }); </script> </body>
The result is as shown in the figure:
You can see that during beforeCreate(), we output undefined, and after created(), we output The value of msg.
This shows that the instance members of Vue are mounted on our vm only after they are created, so you can access our instance members by accessing them after they are created.
The above is the detailed content of How to understand the life cycle (hook function) in vue. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.


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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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