error in ./src/router/index.js Module not found: Error: Can't resolve '@/pages/Resgister' in 'D:\zuoye\app\src\router' ERROR in ./src/router/index.js 6:0-42 Module not found: Error: Can't resolve '@/pages/Resgister' in 'D:\zuoye\app\src\router' @ ./src/main.js 3:0-30 9:2-8 webpack compiled with 1 error
时间: 2023-12-14 08:41:04 浏览: 216
根据错误信息,你的项目在 `./src/router/index.js` 文件中引用了一个不存在的模块 `@/pages/Resgister`。这个错误通常出现在路径引用不正确或文件不存在的情况下。
请确保你的 `@/pages/Resgister` 路径是正确的,并且文件确实存在于该路径中。检查文件名的拼写是否正确,并确保大小写匹配。
另外,确保你的项目中已经正确地配置了别名 `@`,它通常指向 `src` 目录。你可以检查 `webpack` 或其他构建工具的配置文件,以确保别名正确设置。
如果问题仍然存在,请提供更多关于你的项目结构和代码的信息,以便我可以更具体地帮助你解决问题。
相关问题
error in ./src/router/index.js Module not found: Error: Can't resolve '@/views/Contact.vue' in '/root/www/src/router' ERROR in ./src/router/index.js 3:0-36 Module not found: Error: Can't resolve '@/views/Home.vue' in '/root/www/src/router' @ ./src/main.js 5:0-30 9:2-8 ERROR in ./src/router/index.js 4:0-38 Module not found: Error: Can't resolve '@/views/About.vue' in '/root/www/src/router' @ ./src/main.js 5:0-30 9:2-8 ERROR in ./src/router/index.js 5:0-42 Module not found: Error: Can't resolve '@/views/Contact.vue' in '/root/www/src/router' @ ./src/main.js 5:0-30 9:2-8 ERROR in [eslint] /root/www/src/App.vue 26:7 error The "HelloWorld" component has been registered but not used vue/no-unused-components
这些错误信息是关于模块导入的问题。它们指出在你的代码中找不到所需的模块。根据错误信息,可以看出你的代码中缺少了 `@/views/Home.vue`、`@/views/About.vue` 和 `@/views/Contact.vue` 这些组件文件。
同时,还有一个关于 `HelloWorld` 组件的警告,它表示你已经在代码中注册了这个组件,但是并没有使用它。你可以检查你的代码中是否真的需要使用这个组件,如果不需要,可以将其从代码中删除。
Failed to compile with 2 errors 上午10:56:43 error in ./src/router/index.js Module not found: Error: Can't resolve '@/views/product-list' in 'D:\whvue\6.5caigou\src\router' error in ./src/router/index.js Module not found: Error: Can't resolve '@/views/product-category' in 'D:\whvue\6.5caigou\src\router' ERROR in ./src/router/index.js 33:23-53 Module not found: Error: Can't resolve '@/views/product-list' in 'D:\whvue\6.5caigou\src\router' @ ./src/main.js 3:0-30 77:2-8 ERROR in ./src/router/index.js 40:23-57 Module not found: Error: Can't resolve '@/views/product-category' in 'D:\whvue\6.5caigou\src\router' @ ./src/main.js 3:0-30 77:2-8 webpack compiled with 2 errors
这个错误提示是在编译 Vue.js 项目时出现的,提示找不到两个模块:`@/views/product-list` 和 `@/views/product-category`。这可能是因为你的代码中使用了这两个模块,但是实际上并没有定义或者没有正确导入。
你可以检查一下这两个模块是否存在,是否正确导入。你可以在 `src/router/index.js` 文件中找到使用这两个模块的位置,检查是否写错了路径或者没有正确导入。如果确认这两个模块确实不存在,你需要创建它们或者导入正确的路径。
阅读全文