search
HomeWeb Front-endVue.jsAn article explains in detail how to differentiate the project according to the vue version

How to differentiate according to version? The following article will introduce to you the method of differentiation according to the vue version in the project. I hope it will be helpful to you!

An article explains in detail how to differentiate the project according to the vue version

Recently, when initializing and building a project, I encountered a console error problem, lib_exports.getCurrentInstance is not a function, and I am troubleshooting this problem. I learned some knowledge in the process: there are many versions of vue, such as 2.6.x, 2.7, 3.x. Different vue versions have usage differences, and different Different Vue versions will be used in the project. Assuming that a public tool needs to be provided to different projects, how can the tool be differentiated according to the Vue versions in different projects? You can first think about how to implement it, and then continue reading with questions in mind. [Related recommendations: vuejs video tutorial, web front-end development]

An article explains in detail how to differentiate the project according to the vue version

Initial troubleshooting

As can be seen from the error screenshot, the direct cause is the console error caused by calling the getCurrentInstance method in the useVModel method of vueuse. From the vueuse source code, you can see that vueuse imports the getCurrentInstance method from vue-demi.

Then look at the source code of vue-demi, as shown below, and I found something wrong. The vue version I use for this project is vue2. Why is isVue = true in the code? ? Moreover, getCurrentInstance is built-in only in vue2.7 and vue3. Before vue2.7, getCurrentInstance can only be used through @vue/composition-api.

An article explains in detail how to differentiate the project according to the vue version

vue-demi principle

##vue-demi is a simultaneous support A tool library for writing tools for vue2.x and vue3.x. Vueuse uses this library to smooth out some differences between vue2.6.x, vue2.7, and vue3.x.

Look at the

scripts section of package.json of vue-demi, you can see that it is configured with postinstall npm scriptHook, postinstallHook will be executed after you execute the pnpm install command.

An article explains in detail how to differentiate the project according to the vue version##Let's see what

node_modules/vue-demi/scripts/postinstall.js

does. It will first try to load vue (require('vue')). Please note here that if you configure a vue alias in vite or webpack, such as { find: /^vue$/, replacement: '@xf/vue' },, it will not take effect on the script here. Yes, because the script is executed immediately after the dependencies are installed. The project has not been started at this time, and it has nothing to do with Vite. After trying to load vue, it determines the condition and executes the switchVersion method.

An article explains in detail how to differentiate the project according to the vue versionThe main thing the switchVersion method does is copy different configuration contents based on the passed in version number parameters and replace them in the target file.

An article explains in detail how to differentiate the project according to the vue versionIf it is vue2.5 or vue2.6, then it copies the following source code content:

An article explains in detail how to differentiate the project according to the vue version If it is vue3, then it copies the following source code content:

An article explains in detail how to differentiate the project according to the vue version

vue-demi

The principle of implementing differentiated processing for different vue versions is in this way.

Root cause and solution

Go back to the console error problem in the project. This is because

vue-demi

cannot recognize the project vue in, because the project installed is @xf/vue after the vue source code was modified, and there is no pnpm add vue. If it is not recognized, vue-demi uses the default configuration (the default configuration is vue3 configuration). The vue we use when running the code is vue2.5.X. If you try

import { getCurrentInstance } from 'vue'

, you will definitely get an error. <p>The solution is <code>vue-demi provides a command to manually switch the vue version configuration. We configure the prepare npm script for the project: npx vue-demi-switch 2, configured After that, it will be executed every time you install project dependencies and manually switch to vue2 configuration.

(Learning video sharing: vuejs introductory tutorial, Basic programming video)

The above is the detailed content of An article explains in detail how to differentiate the project according to the vue version. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
What Happens When the Vue.js Virtual DOM Detects a Change?What Happens When the Vue.js Virtual DOM Detects a Change?May 14, 2025 am 12:12 AM

WhentheVue.jsVirtualDOMdetectsachange,itupdatestheVirtualDOM,diffsit,andappliesminimalchangestotherealDOM.ThisprocessensureshighperformancebyavoidingunnecessaryDOMmanipulations.

How Accurate Is It to Think of Vue.js's Virtual DOM as a Mirror of the Real DOM?How Accurate Is It to Think of Vue.js's Virtual DOM as a Mirror of the Real DOM?May 13, 2025 pm 04:05 PM

Vue.js' VirtualDOM is both a mirror of the real DOM, and not exactly. 1. Create and update: Vue.js creates a VirtualDOM tree based on component definitions, and updates VirtualDOM first when the state changes. 2. Differences and patching: Comparison of old and new VirtualDOMs through diff operations, and apply only the minimum changes to the real DOM. 3. Efficiency: VirtualDOM allows batch updates, reduces direct DOM operations, and optimizes the rendering process. VirtualDOM is a strategic tool for Vue.js to optimize UI updates.

Vue.js vs. React: Scalability and MaintainabilityVue.js vs. React: Scalability and MaintainabilityMay 10, 2025 am 12:24 AM

Vue.js and React each have their own advantages in scalability and maintainability. 1) Vue.js is easy to use and is suitable for small projects. The Composition API improves the maintainability of large projects. 2) React is suitable for large and complex projects, with Hooks and virtual DOM improving performance and maintainability, but the learning curve is steeper.

The Future of Vue.js and React: Trends and PredictionsThe Future of Vue.js and React: Trends and PredictionsMay 09, 2025 am 12:12 AM

The future trends and forecasts of Vue.js and React are: 1) Vue.js will be widely used in enterprise-level applications and have made breakthroughs in server-side rendering and static site generation; 2) React will innovate in server components and data acquisition, and further optimize the concurrency model.

Netflix's Frontend: A Deep Dive into Its Technology StackNetflix's Frontend: A Deep Dive into Its Technology StackMay 08, 2025 am 12:11 AM

Netflix's front-end technology stack is mainly based on React and Redux. 1.React is used to build high-performance single-page applications, and improves code reusability and maintenance through component development. 2. Redux is used for state management to ensure that state changes are predictable and traceable. 3. The toolchain includes Webpack, Babel, Jest and Enzyme to ensure code quality and performance. 4. Performance optimization is achieved through code segmentation, lazy loading and server-side rendering to improve user experience.

Vue.js and the Frontend: Building Interactive User InterfacesVue.js and the Frontend: Building Interactive User InterfacesMay 06, 2025 am 12:02 AM

Vue.js is a progressive framework suitable for building highly interactive user interfaces. Its core functions include responsive systems, component development and routing management. 1) The responsive system realizes data monitoring through Object.defineProperty or Proxy, and automatically updates the interface. 2) Component development allows the interface to be split into reusable modules. 3) VueRouter supports single-page applications to improve user experience.

What are the disadvantages of VueJs?What are the disadvantages of VueJs?May 05, 2025 am 12:06 AM

The main disadvantages of Vue.js include: 1. The ecosystem is relatively new, and third-party libraries and tools are not as rich as other frameworks; 2. The learning curve becomes steep in complex functions; 3. Community support and resources are not as extensive as React and Angular; 4. Performance problems may be encountered in large applications; 5. Version upgrades and compatibility challenges are greater.

Netflix: Unveiling Its Frontend FrameworksNetflix: Unveiling Its Frontend FrameworksMay 04, 2025 am 12:16 AM

Netflix uses React as its front-end framework. 1.React's component development and virtual DOM mechanism improve performance and development efficiency. 2. Use Webpack and Babel to optimize code construction and deployment. 3. Use code segmentation, server-side rendering and caching strategies for performance optimization.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

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.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.