当前位置: 首页 > 工具软件 > 华夏ERP > 使用案例 >

华夏ERP前端的问题解决

汪和悌
2023-12-01

错误提示

 Vue packages version mismatch:
- vue@2.2.10
- vue-template-compiler@2.5.2
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.

提高vue的版本,使其与配置文件一致:

npm install vue@2.6.10 --save

重新打包后仍然报错,但是vue版本有变化了。

 Vue packages version mismatch:
- vue@2.6.10
- vue-template-compiler@2.5.2
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.

错误提示要求vue和vue-template-compiler必须版本一致,所以现在还需要提高vue-template-compiler的版本:

npm update vue-template-compiler

错误提示

在使用yarn安装依赖包时报错,提示信息:error An unexpected error occurred: "https://registry.yarnpkg.com/killable/-/killable-1.0.0.tgz: connect ETIMEDOUT 104.16.19.35:443"
这是由于资源地址请求超时造成的,更换一下请求地址即可。

解决方案:

安装国内的cnpm工具代替npm:

npm install -g cnpm --registry=https://registry.npm.taobao.org

运行命令,把资源地址设置成npm淘宝源

npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist

附带问题:node-sass缓慢

原因:代理出现了问题,删除之即可

解决方案:

npm config rm proxy 
npm config rm https-proxy

删除之后一切ok

对node-sass镜像源进行设置

yarn config set registry https://registry.npm.taobao.org
yarn config set sass-binary-site http://npm.taobao.org/mirrors/node-sass

npm config set sass-binary-site http://npm.taobao.org/mirrors/node-sass

配置后使用

npm get registry

 类似资料: