vue start a project code example
Example 1: create vue project
npm install -g @vue/cli
//then
vue create hello-world
Example 2: serve a vue project
cd my-app
npm run serve
npm install -g @vue/cli
//then
vue create hello-world
cd my-app
npm run serve