These dependencies were not found: * @/views/About.vue in ./src/router/index.js * @/views/Home.vue in ./src/router/index.js
时间: 2023-08-02 20:11:44 浏览: 185
这个错误通常是因为你在`router/index.js`文件中引用了`@/views/About.vue`和`@/views/Home.vue`组件,但是这两个组件在你的项目中并不存在。
解决这个问题的方法是,检查一下你的项目结构,确保`views`文件夹下有`About.vue`和`Home.vue`文件,并且它们的路径是正确的。这里的`@`符号是一个别名,指向`src`目录。因此,`@/views/About.vue`的路径实际上是`src/views/About.vue`。
如果你的项目结构是正确的,但仍然出现这个错误,那么可以尝试重新安装依赖项,以确保所有依赖项都已正确安装。可以使用以下命令重新安装依赖项:
```
npm install
```
如果你在使用Vue CLI创建项目时选择了默认的配置,则应该会自动为你创建`views`文件夹,并在其中包含`Home.vue`和`About.vue`组件。如果你手动创建了这些文件,那么请确保它们的文件名和路径都是正确的。
相关问题
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
These dependencies were not found: * @jiaminghi/data-view in ./src/main.js * vue-json-editor in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/system/MMaintainCache/MMaintainCache/index.vue?vue&type=script&lang=js& * vue-json-viewer in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/system/MMaintainCache/MMaintainCache/index.vue?vue&type=script&lang=js& To install them, you can run: npm install --save @jiaminghi/data-view vue-json-editor vue-json-viewer
这看起来像是一个错误信息,它表示你的应用程序缺少一些依赖项。你需要安装这些依赖项才能让应用程序正常运行。你可以运行以下命令来安装缺少的依赖项:
```
npm install --save @jiaminghi/data-view vue-json-editor vue-json-viewer
```
这将安装所需的依赖项并解决错误。
阅读全文