D:\Work\NewProgramm\14) 福建附二院后台管理\FujianHospitalTextile\ZR.Vue> yarn run dev
yarn run v1.22.22
warning package.json: No license field
$ set NODE_OPTIONS=--openssl-legacy-provider & 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.
解决 直接执行 npm install
首先,请确保你已经全局安装了 Vue CLI。你可以通过以下命令来全局安装 Vue CLI:
npm install -g @vue/cli
或者如果你使用的是 yarn:
yarn global add @vue/cli
安装完成后,尝试重新运行 yarn run dev 命令,看看问题是否解决了。如果还是出现同样的错误,请检查一下系统环境变量是否配置正确,确保 Vue CLI 的执行路径被正确地添加到了系统的 PATH 变量中。