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 16:04:12 浏览: 269
解决vue安装less报错Failed to compile with 1 errors的问题
根据错误信息 "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` 来安装依赖。
如果以上步骤都没有解决问题,请提供更多相关代码和环境信息,以便我能够更具体地帮助你解决问题。
阅读全文