VUEJS CLI COMMANDS

The CLI utility is the best way to create application in Vuejs.This article has commands to install vue cli,create projecct in vuejs,compile and run vuejs project.

How to install latest version of vue CLI from your visual studio code terminal?

npm install -g @vue/cli

How to uninstall vue CLI i.e globally installed on your system?

npm uninstall vue-cli -g

How can you check the version of vue installed in your system?

vue --version

How to create a new project from your terminal?

vue create newvueproject

How to run your vue project from your terminal?

npm run serve