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
时间: 2023-12-14 08:43:32 浏览: 133
解决vue安装less报错Failed to compile with 1 errors的问题
这个错误提示是在编译 Vue.js 项目时出现的,提示找不到两个模块:`@/views/product-list` 和 `@/views/product-category`。这可能是因为你的代码中使用了这两个模块,但是实际上并没有定义或者没有正确导入。
你可以检查一下这两个模块是否存在,是否正确导入。你可以在 `src/router/index.js` 文件中找到使用这两个模块的位置,检查是否写错了路径或者没有正确导入。如果确认这两个模块确实不存在,你需要创建它们或者导入正确的路径。
阅读全文