creating a new project vue js code example
Example 1: create vue project
npm install -g @vue/cli
//then
vue create hello-world
Example 2: vue create from preset
vue create <appName> --preset <presetName>
npm install -g @vue/cli
//then
vue create hello-world
vue create <appName> --preset <presetName>