太久没写vue,记录一下,创建项目那些就不写了
- 安装nodejs高版本(直接yum安装版本很旧)
curl -sL https://rpm.nodesource.com/setup_20.x | sudo bash -
若存在旧版本则先卸载
yum remove nodejs npm -y
2、用国内镜像cnpm 代替npm
npm install -g cnpm --registry=https://registry.npmmirror.com
3、搭建webpack环境
cnpm install webpack -g
4、安装脚手架
cnpm install vue-cli -g
5、安装依赖包
cnpm install
6、打包
cnpm run build