1:使用vue-cli 创建项目
如果你还没有安装 VueCLI,或者版本低于 4,请执行下面的命令安装或是升级
npm install --global @vue/cli
查看vue 版本
在命令行中输入命令创建项目
vue create test
Vue CLI v4.5.13 ? Please pick a preset: (Use arrow keys) > Default ([Vue 2] babel, eslint) Default (Vue 3) ([Vue 3] babel, eslint) Manually select features
default([Vue 2] babel, eslint):默认勾选 babel、eslint,回车之后直接使用vue2装包
default([Vue 3] babel, eslint):默认勾选 babel、eslint,回车之后直接使用vue2装包
manually:自定义勾选特性配置,选择完毕之后,才会进入装包
选择第 2 种:手动选择特性,支持更多自定义选项
回车:
Vue CLI v4.5.13 ? Please pick a preset: Manually select features ? Check the features needed for your project: (*) Choose Vue version # 选择vue 版本 (*) Babel # es6 转 es5 ( ) TypeScript ( ) Progressive Web App (PWA) Support (*) Router #路由 ( ) Vuex >(*) CSS Pre-processors #CSS 预处理器,后面会提示你选择 less、sass、stylus 等 (*) Linter / Formatter #代码格式校验,ESLint 代码格式校验 ( ) Unit Testing ( ) E2E Testing
回车;选择vue的版本
Vue CLI v4.5.13 ? Please pick a preset: Manually select features ? Check the features needed for your project: Choose Vue version, Babel, Router, CSS Pre-processors, Linter ? Choose a version of Vue.js that you want to start the project with (Use arrow keys) > 2.x 3.x
回车;是否使用 history 路由模式,这里输入 n
不使用
? Use history mode for router? (Requires proper server setup for index fallback in production) (Y/n)
回车;选择 CSS 预处理器,这里选择我们熟悉的 Less
? Pick a CSS pre-processor (PostCSS, Autoprefixer and CSS Modules are supported by default): Sass/SCSS (with dart-sass) Sass/SCSS (with node-sass) > Less Stylus
回车;选择校验工具,这里选择 ESLint + Standard config
? Pick a linter / formatter config: ESLint with error prevention only ESLint + Airbnb config > ESLint + Standard config ESLint + Prettier
回车:
选择在什么时机下触发代码格式校验:
- Lint on save:每当保存文件的时候
- Lint and fix on commit:每当执行
git commit
提交的时候
这里建议两个都选上,更严谨。
? Pick additional lint features: (*) Lint on save >(*) Lint and fix on commit
回车:
Babel、ESLint 等工具会有一些额外的配置文件,这里的意思是问你将这些工具相关的配置文件写到哪里:
- In dedicated config files:分别保存到单独的配置文件
- In package.json:保存到 package.json 文件中
这里建议选择第 1 个,保存到单独的配置文件,这样方便我们做自定义配置。
? Where do you prefer placing config for Babel, ESLint, etc.? (Use arrow keys) > In dedicated config files In package.json
回车:
这里里是问你是否需要将刚才选择的一系列配置保存起来,然后它可以帮你记住上面的一系列选择,以便下次直接重用。
? Save this as a preset for future projects? (y/N) N
回车:
向导配置结束,开始装包。
安装包的时间可能较长,请耐心等待......
安装结束后,切换到你的项目目录,启动项目
# 进入你的项目目录 cd test # 启动开发服务 npm run serve