Home > Article > Web Front-end > How to uninstall vue
How to uninstall vue: 1. Use the "win r" key to open the "Run" window, enter "cmd" and press Enter to open the cmd command window; 2. In the cmd command window, execute "npm uninstall vue -cli -g" command to uninstall vue.
The operating environment of this tutorial: windows7 system, vue2.9.6 version, DELL G3 computer.
How to uninstall vue:
1. Use the "win r" key to open the "Run" window, enter "cmd" and press Enter. Open the cmd command window
2. Enter the following command to uninstall the previous version
npm uninstall vue-cli -g 或 yarn global remove vue-cli
Extension:
Install the latest version
npm install -g @vue/cli 或 yarn global add @vue/cli
View
vue --version 或 vue -V
Related recommendations: "vue.js Tutorial"
The above is the detailed content of How to uninstall vue. For more information, please follow other related articles on the PHP Chinese website!