vue init vs vue create code example
Example 1: create vue project
npm install -g @vue/cli
//then
vue create hello-world
Example 2: How to create a vue cli app
Use npx @vue/cli create myapp
Example 3: vue create from preset
vue create <appName> --preset <presetName>