ERROR in ./src/router/index.js 12:19-39
时间: 2023-12-13 08:06:07 浏览: 222
抱歉,我无法提供关于你的代码错误的具体解决方案。然而,通常来说,这个错误信息表示在你的代码中的 `src/router/index.js` 文件的第12行,第19到39个字符之间存在错误。你可以检查该位置的代码,看是否有语法错误、拼写错误、缺少引入等问题。如果你需要更具体的帮助,请提供更多上下文或相关代码。
相关问题
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` 组件的警告,它表示你已经在代码中注册了这个组件,但是并没有使用它。你可以检查你的代码中是否真的需要使用这个组件,如果不需要,可以将其从代码中删除。
These dependencies were not found: * core-js/fn/promise in ./src/util/formHtml.js * file-saver in ./src/util/formHtml.js To install them, you can run: npm install --save core-js/fn/promise file-saver These relative modules were not found: * ../../../service/api in ./src/util/element/child.js, ./src/util/vant/child.js * ../../router/router in ./src/util/formHtml.js * ../../service/common in ./src/util/data.js * ../../service/storage in ./src/util/data.js * ../form/control/index in ./src/util/formHtml.js 给我中文解析
这些依赖项未找到:
* 在./src/util/formHtml.js中的core-js/fn/promise
* 在./src/util/formHtml.js中的file-saver
要安装它们,可以运行:npm install --save core-js/fn/promise file-saver
这些相对模块未找到:
* 在./src/util/element/child.js、./src/util/vant/child.js中的../../../service/api
* 在./src/util/formHtml.js中的../../router/router
* 在./src/util/data.js中的../../service/common
* 在./src/util/data.js中的../../service/storage
* 在./src/util/formHtml.js中的../form/control/index
阅读全文