This dependency was not found: * @/api/wms/category 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/category/index.vue?vue&type=script&lang=js& To install it, you can run: npm install --save @/api/wms/category
时间: 2023-08-16 08:04:46 浏览: 454
The error message suggests that the dependency "@/api/wms/category" is not found. To resolve this issue, you can try the following steps:
1. Make sure that the dependency is correctly installed in your project. You can check if it exists in your project's `node_modules` directory.
2. If the dependency is missing, you can install it by running the command mentioned in the error message:
```
npm install --save @/api/wms/category
```
3. If the dependency is already installed but still not found, there might be an issue with the path or configuration. Double-check the import statement in your code and ensure that it matches the correct path to the dependency.
If you're still facing issues after following these steps, please provide more information about your project setup and any relevant code snippets to help me assist you better.
阅读全文