loading-view-vue in ./src/main.js * vue-qrcode-reader 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/warehouseTransferDeliverDemo/qrcode-reder.vue?vue&type=script&lang=js& * weixin-jsapi 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/wxpay/wxpay.vue?vue&type=script&lang=js& To install them, you can run: npm install --save loading-view-vue vue-qrcode-reader weixin-jsapi <s> [webpack.Progress] 100% Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp'
时间: 2023-09-24 10:11:46 浏览: 230
这似乎不是一个问题,而是一段提示信息。它告诉你需要安装三个依赖,分别是 loading-view-vue、vue-qrcode-reader、weixin-jsapi。你可以通过运行 "npm install --save loading-view-vue vue-qrcode-reader weixin-jsapi" 命令来安装它们。同时,这个提示信息还可能与 chokidar 相关,它可能会在某些情况下导致文件锁定或资源繁忙的问题。
相关问题
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 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
This error message indicates that the dependency "@/api/wms/category" could not be found. It seems that you need to install this dependency in order to resolve the issue.
To install the missing dependency, you can run the following command in your terminal:
```
npm install --save @/api/wms/category
```
This command will install the "@/api/wms/category" package and save it as a dependency in your project's package.json file. Once the installation is complete, you should be able to resolve the dependency and resolve the error.
This relative module was not found: * ./SliderVerify.vue 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/login/index.vue?vue&type=script&lang=js&
这个错误提示是在 Vue.js 项目中出现的,它表示在 `./src/views/login/index.vue` 组件中的 JavaScript 部分引用了 `./SliderVerify.vue` 组件,但是在项目中找不到这个组件。
可能的原因有:
1. `./SliderVerify.vue` 组件没有正确安装或导入,可以检查一下是否正确安装了依赖并且正确导入了组件。
2. 在引用组件的时候路径写错了,可以检查一下路径是否正确。
3. 如果是在使用 webpack 进行构建的时候出现了这个错误,那么可能是 webpack 配置出现了问题,可以检查一下 webpack 配置文件是否正确。
阅读全文