经过多方查询终于解决了,需要在package.json中加入此代码
set NODE_OPTIONS=--openssl-legacy-provider &&
示例如下
"scripts": {
"build:prod": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"build:stage": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode staging",
"dev": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"lint": "eslint --ext .js,.vue src",
"preview": "node build/index.js --preview"
},