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'
时间: 2023-10-07 15:04:11 浏览: 580
2022年前端面试题汇总.pdf
5星 · 资源好评率100%
根据你提供的错误信息,看起来在 `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` 模块是从其他项目或示例中获取的,请确保你已经正确地复制了该模块,并且路径和命名都是正确的。
请检查以上几点,如果问题仍然存在,请提供更多相关代码和错误信息,以便我能够更具体地帮助你解决问题。
阅读全文