关于旧版本
如果已经全局安装了旧版本的 vue-cli (1.x 或 2.x),你需要先通过 npm uninstall vue-cli -g 或 yarn global remove vue-cli 卸载它。
- 安装
- 检查版本
- 创建项目
- 运行
- 项目目录
- 自定义配置
一.、安装
npm install -g @vue/cli
二、检查版本
vue --version
三、创建项目
vue create gp
//gp项目名称
1、选择预设(三选一)
我选择自定义(手动选择功能)
- 方向键上下移动,空格选中,enter确定
Vue CLI v4.5.15
? Please pick a preset: Manually select features
? Check the features needed for your project:
( ) Choose Vue version
(*) Babel
( ) TypeScript
( ) Progressive Web App (PWA) Support
( ) Router
( ) Vuex
( ) CSS Pre-processors
>( ) Linter / Formatter
( ) Unit Testing
( ) E2E Testing
Babel:vue项目中普遍使用es6语法,将es6转成es5,兼容低版本容器
TypeScript:添加类型来扩展JavaScript
progressive Web App (PWA) Support:渐进式Web应用程序(PWA)支持
Router:路由
vuex:状态管理模式
Css Pre-processors:css预处理器,编写其他语法形式预处理转换成css
Linter/Formatter:格式化程序(代码格式校验)
Unit Testing:单元测试
E2E Testing:端到端测试
2、文件存储方式
Vue CLI v4.5.15
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel
? Where do you prefer placing config for Babel, ESLint, etc.?
In dedicated config files //独立文件
> In package.json //打包
3、文件运行
DONE Compiled successfully in 7970ms 下午5:57:16
App running at:
- Local: http://localhost:8080/
- Network: http://192.168.43.125:8080/
Note that the development build is not optimized.
To create a production build, run npm run build.
输入地址可以进入脚手架初始界面