Complete the code to create a new Vue project using Vue CLI.
vue create [1]Use vue create followed by your project name to start a Vue CLI project.
Complete the command to create a new Vue project using Vite.
npm create vite@latest [1] -- --template vueUse npm create vite@latest with your project name and --template vue to create a Vue project with Vite.
Fix the error in the command to start the Vue CLI development server.
npm run [1]Vue CLI projects use npm run serve to start the development server.
Fill both blanks to install dependencies and start the Vite development server.
npm [1] && npm run [2]
First install dependencies with npm install, then start Vite dev server with npm run dev.
Fill all three blanks to add Vue Router to a Vite project and start the server.
npm [1] vue-router && npm run [2] && echo '[3] started'
Install Vue Router with npm install vue-router, start Vite dev server with npm run dev, and print a message.