npm ERR! Missing script: "element-ui" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\93956\AppData\Local\npm-cache\_logs\2023-05-25T05_20_14_416Z-debug-0.log
时间: 2023-07-09 11:08:31 浏览: 88
这个错误提示是因为你在运行 `npm run element-ui` 命令时,没有在 `scripts` 字段中定义 `element-ui` 脚本。
你需要在 `package.json` 文件中的 `scripts` 字段中添加 `element-ui` 脚本。例如:
```
"scripts": {
"element-ui": "your-command-here"
},
```
然后再运行 `npm run element-ui` 命令就可以了。
阅读全文