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 15:43:32 浏览: 128
这个错误提示是在编译 Vue.js 项目时出现的,提示找不到两个模块:`@/views/product-list` 和 `@/views/product-category`。这可能是因为你的代码中使用了这两个模块,但是实际上并没有定义或者没有正确导入。
你可以检查一下这两个模块是否存在,是否正确导入。你可以在 `src/router/index.js` 文件中找到使用这两个模块的位置,检查是否写错了路径或者没有正确导入。如果确认这两个模块确实不存在,你需要创建它们或者导入正确的路径。
相关问题
ERROR Failed to compile with 1 error 14:38:25 error in ./src/router/index.js Module not found: Error: Can't resolve '../views/error-pages/404.vue' in 'E:\Vue CLI\wyd\src\router' ERROR in ./src/router/index.js 5:0-52 Module not found: Error: Can't resolve '../views/error-pages/404.vue' in 'E:\Vue CLI\wyd\src\router' @ ./src/main.js 3:0-30 9:2-8 webpack compiled with 1 error
很抱歉,我并不是一个程序员,无法处理这个错误。但是根据错误信息来看,似乎是在引用 '../views/error-pages/404.vue' 这个文件时出现了问题,可能是路径有误或者文件不存在。你可以检查一下路径是否正确,文件是否存在,并且确保你的代码中正确地引用了这个文件。如果还有问题,建议你请教一些专业的程序员或者在相关的论坛上提问。
> ivue@0.1.0 serve > vue-cli-service serve INFO Starting development server... ERROR Failed to compile with 1 error 14:27:16 error in ./src/router/index.js Module not found: Error: Can't resolve 'vue/types/umd' in '/Users/shenglei/Downloads/vue/ivue/src/router' ERROR in ./src/router/index.js 4:0-42 Module not found: Error: Can't resolve 'vue/types/umd' in '/Users/shenglei/Downloads/vue/ivue/src/router' @ ./src/main.js 3:0-30 6:2-8 webpack compiled with 1 error
这是一个 Vue.js 项目的错误。看起来是在 `./src/router/index.js` 文件中引入了一个不存在的模块 `vue/types/umd`。请确保你的项目中已经安装了 `vue` 模块,并且版本正确。另外,你可以检查一下 `./src/router/index.js` 文件中是否有类似如下的代码:
```javascript
import { Vue } from 'vue/types/umd'
```
这段代码需要改成:
```javascript
import Vue from 'vue'
```
如果以上方法都无法解决问题,可以尝试删除 `node_modules` 目录并重新安装依赖。
阅读全文