Home > Article > Web Front-end > How to uninstall vue.js using npm
The way to uninstall vue.js with npm is to uninstall it by executing the [npm uninstall vue-cli -g] command. If we want to install the latest version of vue.js, we can execute the [npm install -g @vue/cli] command.
The operating environment of this tutorial: Windows 10 system, Vue version 2.9.6. This method is suitable for all brands of computers.
The method to uninstall vue.js using npm is:
Solution:
Run the following command to uninstall vue.js:
npm uninstall vue-cli -g
(Learning video sharing: javascript video tutorial)
vue.js installation and uninstallation commands:
Install the latest version
npm install -g @vue/cli
Or
yarn global add @vue/cli
Uninstall the previous version
npm uninstall vue-cli -g
or
yarn global remove vue-cli
View
vue --version
or
vue -V
Related recommendations: vue.js tutorial
The above is the detailed content of How to uninstall vue.js using npm. For more information, please follow other related articles on the PHP Chinese website!