In-depth understanding of the life cycle comparison between Vue2 and Vue3

In-depth understanding of the life cycle comparison between Vue2 and Vue3

Cycle comparison

vue2 vue3
beforeCreate setup
created setup
beforeMount onBeforeMount
mounted onMounted
beforeUpdate onBeforeUpdate
updated onUpdated
activeted onActiveted
deactiveted onDeactiveted
beforeDestory onBeforeUnmount
destoryed onUnmounted

usage

The life cycle in vue2 is used as a function at the same level as data/methods, such as created() {}

data() {
    return {}
},
created() {
    ...
}

The life cycle setup in vue3 is in the outermost layer and does not need to be loaded on demand. Other life cycles must be loaded on demand to be used.

import { omMounted } from 'vue'
setup() {
    onMounted(() => { ... })
}

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Commonplace talk about the life cycle of Vue
  • Detailed explanation of Vue3 life cycle hook function
  • A brief discussion on the life cycle of Vue
  • Detailed explanation of Vue life cycle
  • Let's talk about the Vue life cycle in detail
  • Let's learn about Vue's life cycle

<<:  How to smoothly go online after MySQL table partitioning

>>:  Example of using CSS to achieve floating effect when mouse moves over card

Recommend

Example of using Dockerfile to build an nginx image

Introduction to Dockerfile Docker can automatical...

MySQL pessimistic locking and optimistic locking implementation

Table of contents Preface Actual Combat 1. No loc...

Vue implements zoom in, zoom out and drag function

This article example shares the specific code of ...

How to operate the check box in HTML page

Checkboxes are very common on web pages. Whether ...

MySQL 8.0.25 installation and configuration method graphic tutorial

The latest download and installation tutorial of ...

HTML meta explained

Introduction The meta tag is an auxiliary tag in ...

WeChat applet realizes multi-line text scrolling effect

This article example shares the specific code for...

How to solve the problem of clicking tomcat9.exe crashing

A reader contacted me and asked why there were pr...

How to transfer files between Docker container and local machine

To transfer files between the host and the contai...

MySql login password forgotten and password forgotten solution

Method 1: MySQL provides a command line parameter...

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...

Usage of mysql timestamp

Preface: Timestamp fields are often used in MySQL...

Detailed explanation of the use of ElementUI in Vue

Login + sessionStorage Effect display After a suc...

Detailed explanation of Redis master-slave replication practice using Docker

Table of contents 1. Background 2. Operation step...