小智 18

我遇到了同样的问题,基本上发生的事情是我的 VUE 版本与 vue-loader 和 vue-template-compiler 的版本不匹配

为了解决这个问题,我只需匹配 package.json 中的版本,npm install 这是我正在使用的版本

"vue": "^2.6.11",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"laravel-mix": "^6.0.6",
Run Code Online (Sandbox Code Playgroud)

  • 这是我在 laravel 8 中的工作,问题来自 vue-loader 版本,它是版本 17.0.0,我将其更改为 15.9.6,谢谢 Boutghat。 (3认同)