Failed to compile. ./src/views/notice/module/monitor.vue?vue&type=script&lang=js& (./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/notice/module/monitor.vue?vue&type=script&lang=js&) Module not found: Error: Can't resolve '@/api/common/notice' in 'C:\Users\吴卓元\eladmin-web\src\views\notice\module'
时间: 2023-10-07 17:04:12 浏览: 276
根据错误信息 "Module not found: Error: Can't resolve '@/api/common/notice' in 'C:\Users\吴卓元\eladmin-web\src\views\notice\module'",可以判断出在文件 `monitor.vue` 中引入的 `@/api/common/notice` 模块未找到。
请按照以下步骤检查和解决问题:
1. 确保 `@/api/common/notice` 模块在指定路径存在。检查一下该路径下是否存在 `api/common/notice.js` 或 `api/common/notice/index.js` 文件。
2. 确保你的项目配置中正确设置了 `@` 别名,通常是指向项目的根目录。你可以在项目的 webpack 配置文件或 vue-cli 的配置文件中查找别名的设置,并确保其正确指向项目根目录。
3. 如果你使用的是 Vue CLI 创建的项目,可以尝试重启开发服务器。有时候在修改配置文件后,开发服务器可能需要重新启动才能生效。
4. 确保你已经安装了 `@/api/common/notice` 模块所依赖的相关包。可以通过运行 `npm install` 或 `yarn install` 来安装依赖。
如果以上步骤都没有解决问题,请提供更多相关代码和环境信息,以便我能够更具体地帮助你解决问题。
相关问题
Failed to compile. ./src/views/notice/module/detail.vue?vue&type=script&lang=js& (./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/notice/module/detail.vue?vue&type=script&lang=js&) Module not found: Error: Can't resolve '@/components/FileUpload/fileDetail' in 'C:\Users\吴卓元\eladmin-web\src\views\notice\module'
根据你提供的错误信息,看起来在 `src/views/notice/module/detail.vue` 文件中,无法找到 `@/components/FileUpload/fileDetail` 模块。
这个问题可能是由以下原因导致的:
1. 确保 `@/components/FileUpload/fileDetail` 模块存在于指定的路径中。检查一下路径 `@/components/FileUpload` 下是否存在 `fileDetail.vue` 文件。
2. 确保你的项目配置中正确设置了 `@` 别名,通常是指向项目的根目录。你可以在项目的 webpack 配置文件或 vue-cli 的配置文件中查找别名的设置,并确保其正确指向项目根目录。
3. 确保你已经安装了 `@/components/FileUpload/fileDetail` 模块所依赖的相关包。可以通过运行 `npm install` 或 `yarn install` 来安装依赖。
4. 如果 `@/components/FileUpload/fileDetail` 模块是从其他项目或示例中获取的,请确保你已经正确地复制了该模块,并且路径和命名都是正确的。
请检查以上几点,如果问题仍然存在,请提供更多相关代码和错误信息,以便我能够更具体地帮助你解决问题。
Failed to compile. ./src/views/Kanban/drugDistribution/index.vue?vue&type=script&lang=js& (./node_modules/babel-loader/lib?cacheDirectory!./node_modules/vue-loader/lib??vue-loader-options!./src/views/Kanban/drugDistribution/index.vue?vue&type=script&lang=js&) Module not found: Error: Can't resolve './dataVisualization' in 'D:\公司项目最新\mysrc\visit-user\src\views\Kanban\drugDistribution'
这似乎是一个编译错误,指出在路径 `./dataVisualization` 中找不到模块。可能是由于以下原因之一:
1. 模块确实不存在于指定的路径中。
2. 路径不正确,导致模块无法找到。
3. 模块存在,但未正确安装或导入。
您可以先检查路径是否正确,如果路径正确,可以尝试重新安装依赖项,或者检查导入语句是否正确。如果问题仍然存在,请提供更多信息,以便我可以更好地帮助您解决问题。
阅读全文