在我的php laravel项目的终端上运行npm run watch
之后,我收到了这个错误:
Module build failed: Error:
Vue packages version mismatch:
- vue@2.3.2
- vue-template-compiler@2.2.6
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
我尝试运行此命令npm update vue-template-compiler
,但错误仍然存在。
其他人是否遇到过这个问题?
答案 0 :(得分:1)
我找到了soluiton,我必须删除node_modules
文件夹后,我必须运行npm install
然后问题就解决了。