1. Why do we need vue3?When we use vue2, we often encounter some unpleasant experiences, such as:
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
3. Differences in responsive principlesVue2.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 cyclebeforeCreate -> 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 structureVue3 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 APIIn 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 definePropertyAdvantages of Proxy over defineProperty There are three main problems with Object.defineProperty():
Proxy was officially added in the ES2015 specification. It has the following features:
In addition to the above two points, Proxy also has the following advantages:
8. More information vue3 source code 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:
|
<<: How to batch generate MySQL non-duplicate mobile phone number table example code
>>: Upgrading Windows Server 2008R2 File Server to Windows Server 2016
Nginx load balancing server: IP: 192.168.0.4 (Ngi...
There is a requirement to realize the shaking eff...
The code looks like this: <!DOCTYPE html> &...
Table of contents 1. Introduction to UDP and Linu...
Table of contents initialization initState() init...
Phenomenon The system could compile the Linux sys...
This article mainly introduces: using Vue to impl...
1. Change the virtual machine hardware version in...
Background Recently, I encountered such a problem...
Table of contents 1. Environmental Preparation 2....
There are many reasons for slow query speed, the ...
As you build and scale your Django applications, ...
I have been working on a project recently - Budou ...
Install MySQL and keep a note. I don’t know if it...
Table of contents 【Effect】 【Implementation method...