[Vuejs]-Creating vue-cli3 project on git-bash

4👍

You’re trying to use a vue-cli 2 command with a vue-cli 3 version.

Since version 3, the command to initialize a new project has changed so to do what you want you’re not going to write vue init webpack-simple project but instead vue create project

Leave a comment