ERROR in ./src/router/index.js 12:19-39
时间: 2023-12-13 08:06:07 浏览: 212
抱歉,我无法提供关于你的代码错误的具体解决方案。然而,通常来说,这个错误信息表示在你的代码中的 `src/router/index.js` 文件的第12行,第19到39个字符之间存在错误。你可以检查该位置的代码,看是否有语法错误、拼写错误、缺少引入等问题。如果你需要更具体的帮助,请提供更多上下文或相关代码。
相关问题
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` 文件中找到使用这两个模块的位置,检查是否写错了路径或者没有正确导入。如果确认这两个模块确实不存在,你需要创建它们或者导入正确的路径。
ERROR in ./src/page/login/health.vue Module Error (from ./node_modules/vue-loader/dist/index.js): At least one <template> or <script> is required in a single file component. @ ./src/router/index.js 10:19-82 @ ./src/main.js 6:0-39 11:8-14
这看起来是一个错误提示,可能是您的代码缺少了一个 <template> 或 <script> 标签。请检查您的代码并确保每个单文件组件都有一个 <template> 或 <script> 标签。另外,请确保您的代码没有语法错误或其他问题。如果您需要更多帮助,请提供更多上下文或代码示例,让我更好地理解您的问题。
阅读全文