全局安装脚手架

npm install -g @vue/cli

PS D:\www\vue> vue.cmd --version

@vue/cli 5.0.3

创建项目

PS D:\www\vue> vue.cmd create vueproject01

Vue CLI v5.0.3
? Please pick a preset:
Default ([Vue 3] babel, eslint)
Default ([Vue 2] babel, eslint)
> Manually select features

Vue CLI v5.0.3
? Please pick a preset: Manually select features
? Check the features needed for your project: (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed)
(*) Babel
( ) TypeScript
( ) Progressive Web App (PWA) Support
(*) Router
(*) Vuex
(*) CSS Pre-processors
>( ) Linter / Formatter
( ) Unit Testing
( ) E2E Testing


Vue CLI v5.0.3
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, Router, Vuex, CSS Pre-processors
? Choose a version of Vue.js that you want to start the project with (Use arrow keys)
> 3.x
2.x

Vue CLI v5.0.3
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, Router, Vuex, CSS Pre-processors
? Choose a version of Vue.js that you want to start the project with 3.x
? Use history mode for router? (Requires proper server setup for index fallback in production) (Y/n) Y

Sass/SCSS (with dart-sass)
> Less
Stylus



? Save this as a preset for future projects? (y/N) n

运行

PS D:\www\vue> cd .\vueproject01\
PS D:\www\vue\vueproject01> npm run serve