vue electron This is probably not a problem with npm. There is likely additional logging output above.报错
时间: 2023-10-21 12:31:22 浏览: 136
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
这个错误信息并不是非常明确,但通常是由于 Vue 和 Electron 版本不兼容导致的。请检查您的 Vue 和 Electron 版本是否匹配。
如果您使用的是 Vue CLI 创建的项目,请确保您已经安装了 `vue-cli-plugin-electron-builder` 插件,并且在 `package.json` 中配置了正确的 Electron 版本。
如果您手动配置了 Electron,您需要确保在 `package.json` 中指定正确的 Electron 版本,并且在您的 Vue 项目中使用了兼容该版本的依赖项。
此外,您可以尝试删除 `node_modules` 文件夹并重新安装依赖项,以确保所有依赖项都被正确安装。
阅读全文