0👍
As I can not see which command you have fired for installation in your image.
Please checkout the official Document’s Installation Page for more In Depth Installation Information.
https://v2.vuejs.org/v2/guide/installation.html
Use VueCLI for Command Line Installation.
If you are installing Vuejs using the terminal you need to:
-
Firstly install NPM package manager.
-
Then run the command below to install VueCLI:
npm install -g @vue/cli @vue/cli-service-global
-
After executing this command simply check if it works successfully by typing:
vue -v
It should print the vue version if it was successful.
-
Then you can create a Vue project by using following command:
vue create [Your Project Name]
It is all provided on VueCLI Site.
Source:stackexchange.com