模块构建失败:Vue包版本不匹配

Pav*_*iev 2 laravel webpack

我使用laravel 5.5,内置webpack

Module build failed: Error:
Vue packages version mismatch:
- vue@2.5.2
- vue-template-compiler@2.4.4
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.
Run Code Online (Sandbox Code Playgroud)

怎么了?有我的package.json

{
    "devDependencies": {
        "cross-env": "^5.0.5",
        "laravel-mix": "^1.5.0"
    },
    "dependencies": {
        "axios": "^0.16.2",
        "bootbox": "^4.4.0",
        "bootstrap": "^4.0.0-beta",
        "font-awesome": "^4.7.0",
        "jquery": "^3.2.1",
        "lodash": "^4.17.4",
        "marked": "^0.3.6",
        "normalize.css": "^7.0.0",
        "popper.js": "^1.12.5",
        "vue": "^2.5.2",
        "vue-loader": "^13.3.0",
        "vue-localstorage": "^0.4.2",
        "vue-markdown": "^2.2.4",
        "vue-masked-input": "^0.5.2",
        "vue-simplemde": "^0.4.5",
        "vue-template-compiler": "^2.4.4",
        "vue-upload-component": "^2.6.0-beta.3"
    }
}
Run Code Online (Sandbox Code Playgroud)

即使我将"vue-template-compiler"更改为2.5.2 - 它也没有帮助

Pav*_*iev 7

npm update --scripts-prepend-node-path=auto 帮助