Summary of the advantages of Vue3 vs. Vue2

Summary of the advantages of Vue3 vs. Vue2

1. Why do we need vue3?

When we use vue2, we often encounter some unpleasant experiences, such as:

  1. With the growth of functions and the increase of requirements, the code of complex components is becoming more and more difficult to maintain and the logic is confusing. Although Vue2 also has some reuse methods, they all have certain disadvantages. For example, Mixin, which we often use, is particularly prone to naming conflicts. The intention of the exposed variables is not very obvious, and it is easy to conflict when reused in other components.
  2. Vue2's support for typeScript is very limited, and ts integration is not considered.

The emergence of vue3 is to solve the shortcomings of vue2. Its composition API solves the problem of logic reuse very well. Moreover, the vue3 source code is written in ts, and it supports ts very well. We can use ts to make the code more robust during project development.

2. Advantages of vue3

  1. Vue3 supports most of the features of Vue2 and is compatible with Vue2
  2. Vue3 has obvious performance improvement compared to Vue2
    1. Reduced package size by 41%
    2. 55% faster initial rendering, 133% faster updates
    3. Memory usage reduced by 54%
  3. Vue3's composition API enables logic modularization and reuse
  4. Added new features, such as Teleport components, global API modifications and optimizations, etc.

3. Differences in responsive principles

Vue2.x implements the principle of two-way data binding through es5's Object.defineProperty, which reads and modifies data based on specific keys. The setter method is used to implement data hijacking, and the getter method is used to modify the data. However, you must first know what key you want to intercept and modify, so vue2 can't do anything about the newly added attributes, such as being unable to monitor the addition and deletion of attributes, changes in array indexes and lengths. The solution of vue2 is to use methods such as Vue.set(object, propertyName, value) to add responsiveness to nested objects.

Vue3.x uses ES2015's faster native proxy to replace Object.defineProperty. Proxy can be understood as setting up a layer of "interception" before the object. Any external access to the object must first pass through this layer of interception. Therefore, it provides a mechanism to filter and rewrite external access. Proxy can directly monitor objects instead of properties and return a new object, with better responsive support

4. Differences in life cycle

beforeCreate -> Please use setup()

created -> use setup()

beforeMount -> onBeforeMount

mounted -> onMounted

beforeUpdate -> onBeforeUpdate

updated -> onUpdated

beforeDestroy -> onBeforeUnmount

destroyed -> onUnmounted

errorCaptured -> onErrorCaptured

If you want to use the life cycle function in the page, the previous operation of vue2 is to write the life cycle directly in the page, and vue3 needs to be referenced, which is why 3 can compress the code to a lower level.

5. Differences in default project directory structure

Vue3 removes the configuration file directory, config and build folders, removes the static folder, adds a public folder, and moves index.html to public. A views folder is added to the src folder to classify view components and public components.

6.vue3 optimizes the global API

In Vue3, both global and internal APIs have been refactored with tree-shaking support in mind. As a result, the global API is now only accessible as named exports from ES module builds.

import { nextTick } from 'vue'
nextTick(() => {
  // Some DOM related stuff})

Entry file

// Vue2 writing // Modification of vue2 global configuration will modify the properties of the Vue object // It is also very difficult to share a Vue object with different configurations in different apps import Vue from 'vue'
import App from './App.vue'
Vue.config.xx=xx
Vue.use(...)
Vue.mixin(...)

new Vue({
  render:h=>h(app)
}).$mount('#app')

// Vue3 import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(APP) // Create an app instance app.config.xx=xx // Modify the configuration on the instance without conflict app.use(...)
app.mixin(...)
app.mount('#app')


7. Use Proxy instead of defineProperty

Advantages of Proxy over defineProperty

There are three main problems with Object.defineProperty():

  • Cannot monitor array changes
  • You must iterate over each property of the object
  • Must traverse deeply nested objects

Proxy was officially added in the ES2015 specification. It has the following features:

  • For objects: for the entire object, rather than a certain attribute of the object, so there is no need to traverse the keys. This solves the second problem with Object.defineProperty() mentioned above
  • Support arrays: Proxy does not need to overload array methods, eliminating many hacks. Reducing the amount of code means reducing maintenance costs, and the standard is the best.

In addition to the above two points, Proxy also has the following advantages:

  • The second parameter of Proxy can have 13 interception methods, which is richer than Object.defineProperty()
  • As a new standard, Proxy has received much attention and performance optimization from browser manufacturers. In contrast, Object.defineProperty() is an old method.

8. More information

vue3 source code
vue3 official website

The above is a detailed summary of the advantages of Vue3 over Vue2. For more information about the advantages of Vue3 over Vue2, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of how to dynamically refresh the table using vue2.0 combined with the DataTable plug-in
  • Comparison of the advantages of vue3 and vue2
  • Examples of using provide and inject in Vue2.0/3.0
  • Vue2.x configures routing navigation guards to implement user login and exit
  • In-depth study of vue2.x--Explanation of the h function
  • Vue2.x responsiveness simple explanation and examples
  • Vue2 implements provide inject to deliver responsiveness
  • A brief analysis of the responsiveness principle and differences of Vue2.0/3.0
  • vue2.x configuration from vue.config.js to project optimization
  • Handwritten Vue2.0 data hijacking example
  • Vue2.x - Example of using anti-shake and throttling
  • Source code reveals why Vue2 this can directly obtain data and methods

<<:  How to batch generate MySQL non-duplicate mobile phone number table example code

>>:  Upgrading Windows Server 2008R2 File Server to Windows Server 2016

Recommend

Nginx configuration to achieve multiple server load balancing

Nginx load balancing server: IP: 192.168.0.4 (Ngi...

CSS3 realizes the red envelope shaking effect

There is a requirement to realize the shaking eff...

Learning about UDP in Linux

Table of contents 1. Introduction to UDP and Linu...

Vue interpretation of responsive principle source code analysis

Table of contents initialization initState() init...

Solution to the conflict between Linux kernel and SVN versions

Phenomenon The system could compile the Linux sys...

Vue implements tab navigation bar and supports left and right sliding function

This article mainly introduces: using Vue to impl...

Nginx one domain name to access multiple projects method example

Background Recently, I encountered such a problem...

How to build a SOLO personal blog from scratch using Docker

Table of contents 1. Environmental Preparation 2....

Causes and solutions for slow MySQL queries

There are many reasons for slow query speed, the ...

How to use Celery and Docker to handle periodic tasks in Django

As you build and scale your Django applications, ...

iFrame is a great way to use it as a popup layer to cover the background

I have been working on a project recently - Budou ...

MySQL 5.7.21 Installer Installation Graphic Tutorial under Windows 10

Install MySQL and keep a note. I don’t know if it...

Example of Vue implementing fixed bottom component

Table of contents 【Effect】 【Implementation method...