环境准备
nodejs版本:v16.20.1
npm版本:8.19.4
1.初始化
npm init -y
2.安装vue-cli
npm install -D @vue/cli
3.查看安装vue-cli的版本
4.创建vue2项目
npx vue create 项目名称
选择Manually select features,回车
选择TypeScript,回车
选择2.x,回车
选项说明
Use class-style component syntax - 是否使用类风格,typescript就是类风格,选择yes
Use Babel alongside TypeScript - 使用Babel,选择yes
Pick a linter / formatter config - 格式化
Pick additional lint features - eslint检查触发点,选择保存
In dedicated config files - 配置文件单独保存
In package.json - 保存在package.json
是否保存选择,选择n
5.运行
yarn serve