问题:

Vue3项目运行yarn run serve出现

$ vue-cli-service serve
'vue-cli-service' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

过程分析原因:

返回的问题原因说了vue-cli-service插件的缺失执行不了serve的运行,但这个插件和项目中使用的yarn有关,那就是没安装项目依赖,执行yarn install,在此之前有个前提,要使用yarn,你得先安装yarn

npm install -g yarn

如果你使用的是npm包管理的话就是执行npm install即可

解决方法:

yarn install

在这里插入图片描述

运行报错:

1、yarn install运行时报如下错误:

在这里插入图片描述

解决方法:
yarn config set ignore-engines true

2、yarn install运行时报如下错误:

在这里插入图片描述

解决方法:
#MAC下
export NODE_OPTIONS=--openssl-legacy-provider

#windows下
$env:NODE_OPTIONS="--openssl-legacy-provider"
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐