一、第一次创建项目
1.安装vue-cli
- 需要安装 node js环境
- $ npm install -g @vue/cli
2.命令行
vue create filename(文件名)
3.选择模
- 一开始只有两个选项: default(默认配置)和Manually select features(手动配置)
- 下面是手动配置
4.选择配置
? Check the features needed for your project: (Press <space> to select, <a> to toggle all, <i> to invert selection)
(*) Choose Vue version
(*) Babel
( ) TypeScript
( ) Progressive Web App (PWA) Support
( ) Router
( ) Vuex
( ) CSS Pre-processors
(*) Linter / Formatter
( ) Unit Testing
( ) E2E Testing
5.是否使用路由的history模式:
- 这里我建议选No,这样打包出来丢到服务器上可以直接使用了,后期要用的话,可以自己设置。 直接按回车就好
6.选择css预处理器:
根据个人使用
Sass/SCSS (with dart-sass)
Sass/SCSS (with node-sass)
> Less
Stylus
7.选择Eslint代码验证规则:
ESLint with error prevention only
ESLint + Airbnb config
> ESLint + Standard config
ESLint + Prettier
8.选择什么时候进行代码规则检测:
默认就好,当然你下面那个要选上也行
(*) Lint on save
( ) Lint and fix on commit
9. 把babel,postcss,eslint这些配置文件放哪
> In dedicated config files
In package.json
10.是否保存配置:
Save this as a preset for future projects? (Y/n)
Save preset as: name
|