vue cli 4 create project code example
Example 1: install vue cli
npm install -g @vue/cli
//to see the version installed
vue --version
Example 2: create new project vue
cd vue_projects
vue create vue-project-name
//the project name MUST NOT have camelcase format
cd vue-project-name
npm run serve
Example 3: How to create a vue cli app
Use npx @vue/cli create myapp
Example 4: create new vuejs project
creating neww vuejs project