


Let's talk about what vue life cycle hook functions are and when they are triggered
This article brings you relevant knowledge about vue. It mainly introduces what the vue life cycle hook functions are and when they are triggered. The vue life cycle is a component from birth to Let’s take a look at a complete cycle of death. I hope it will be helpful to everyone.
[Related recommendations: javascript video tutorial, vue.js tutorial】
vue life cycle hook Function
Vue life cycle is a complete cycle from birth to death of a component
Mainly includes the following 4 stages: creation, mounting, update, destruction
- Before creation:
beforeCreate
, after creation:created
- Before mounting:
beforeMount
, after mounting :mounted
- Before update:
beforeUpdate
, After update:updated
- Before destruction:
beforeDestroy
, after destruction:destroyed
The hooks I usually use more often are created and mounted. Created is used to obtain background data, and mounted is used after the dom is mounted. Do some dom operations, initialize plug-ins, etc. beforeDestroy user clears timers and unbinding events, etc.
In addition, it also adds the use of built-in component keep-alive to cache instances instead of frequent creation and destruction (overhead Large)
-
actived
Instance activation -
deactived
Instance failure
The following is the detailed version
It’s ok if everyone understands:
Life cycle hook function (11) Function (type), the one marked in blue means that it belongs to the type.
beforeCreate
Function is called after instance initialization and before data observer and event/watcher event configuration.#created
Function is called immediately after the instance is created. At this step, the instance has completed the following configuration: data observer, operations on properties and methods, and watch/event event callbacks. However, the mount phase has not started yet, and the $el attribute is not currently visible.beforeMount
Function is called before the mount starts: the related render function is called for the first time.mounted
Function el is replaced by the newly created vm.el and the hook is called after being mounted to the instance. If the root instance mounts an in-document element, vm.$el is also in the document when mounted is called.beforeUpdate
Function is called when the data is updated, which occurs before the virtual DOM is patched. This is suitable for accessing the existing DOM before updating, such as manually removing an added event listener. This hook is not called during server-side rendering, since only the initial rendering occurs on the server side.updated
Function This hook is called after virtual DOM re-rendering and patching due to data changes.activated
Function keep-alive is called when the component is activated. This hook is not called during server-side rendering.deactivated
Function keep-alive is called when the component is deactivated. This hook is not called during server-side rendering.beforeDestroy
Function is called before the instance is destroyed. At this step, the instance is still fully available. This hook is not called during server-side rendering.destroyed
Function is called after the Vue instance is destroyed. When called, everything pointed to by the Vue instance will be unbound, all event listeners will be removed, and all child instances will be destroyed. This hook is not called during server-side rendering.-
errorCaptured
(new in 2.5.0) (err: Error, vm: Component, info: string) => ?boolean when capturing an error from a descendant component is called. This hook receives three parameters: the error object, the component instance where the error occurred, and a string containing information about the source of the error. This hook can return false to prevent the error from propagating further upwards.
Life cycle mounted and activated use and pitfalls
activated
Speaking of activated, I have to mention it keep-alive, it will be called when you switch out and back out. (You can understand it as a life cycle hook function, and the usage is the same)
mounted
refers to being called after the instance is mounted. If there is no keep-alive, it will be called every time The component will trigger once when you switch back, but keep-alive will cache inactive component instances, so it can be said that it will only trigger once. Therefore, for some data requests, you often need to write a request here and a request in activated to ensure that you can still request new data when you return.
Step on the Pit
1. There is a keyword here that is an example, which means that if you use $refs, you have to pay attention.
2.mounted is executed first, and both are executed together when entering for the first time
PS
keep-alive has many, many applications.
[Related recommendations: javascript video tutorial, vue.js tutorial】
The above is the detailed content of Let's talk about what vue life cycle hook functions are and when they are triggered. For more information, please follow other related articles on the PHP Chinese website!

Vue.js and React each have their own advantages and disadvantages. When choosing, you need to comprehensively consider team skills, project size and performance requirements. 1) Vue.js is suitable for fast development and small projects, with a low learning curve, but deep nested objects can cause performance problems. 2) React is suitable for large and complex applications, with a rich ecosystem, but frequent updates may lead to performance bottlenecks.

Vue.js is suitable for small to medium-sized projects, while React is suitable for large projects and complex application scenarios. 1) Vue.js is easy to use and is suitable for rapid prototyping and small applications. 2) React has more advantages in handling complex state management and performance optimization, and is suitable for large projects.

Vue.js and React each have their own advantages: Vue.js is suitable for small applications and rapid development, while React is suitable for large applications and complex state management. 1.Vue.js realizes automatic update through a responsive system, suitable for small applications. 2.React uses virtual DOM and diff algorithms, which are suitable for large and complex applications. When selecting a framework, you need to consider project requirements and team technology stack.

Vue.js and React each have their own advantages, and the choice should be based on project requirements and team technology stack. 1. Vue.js is community-friendly, providing rich learning resources, and the ecosystem includes official tools such as VueRouter, which are supported by the official team and the community. 2. The React community is biased towards enterprise applications, with a strong ecosystem, and supports provided by Facebook and its community, and has frequent updates.

Netflix uses React to enhance user experience. 1) React's componentized features help Netflix split complex UI into manageable modules. 2) Virtual DOM optimizes UI updates and improves performance. 3) Combining Redux and GraphQL, Netflix efficiently manages application status and data flow.

Vue.js is a front-end framework, and the back-end framework is used to handle server-side logic. 1) Vue.js focuses on building user interfaces and simplifies development through componentized and responsive data binding. 2) Back-end frameworks such as Express and Django handle HTTP requests, database operations and business logic, and run on the server.

Vue.js is closely integrated with the front-end technology stack to improve development efficiency and user experience. 1) Construction tools: Integrate with Webpack and Rollup to achieve modular development. 2) State management: Integrate with Vuex to manage complex application status. 3) Routing: Integrate with VueRouter to realize single-page application routing. 4) CSS preprocessor: supports Sass and Less to improve style development efficiency.

Netflix chose React to build its user interface because React's component design and virtual DOM mechanism can efficiently handle complex interfaces and frequent updates. 1) Component-based design allows Netflix to break down the interface into manageable widgets, improving development efficiency and code maintainability. 2) The virtual DOM mechanism ensures the smoothness and high performance of the Netflix user interface by minimizing DOM operations.


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
