[Vuejs]-Having troubles with start up Vue application;

0👍

I’ve changed my package.json from

 "vuex": "^4.0.2",
 "vue-cli": "^2.9.6",
 "@vue/cli": "4.5.15",
 "vue-loader": "^16.0.0-beta.8",
 "vue-router": "^4.0.13",
 "@vue/cli-plugin-babel": "^5.0.1",
 "@vue/cli-service": "4.5.15",
 "@vue/compiler-sfc": "^3.2.31",

to

"vue": "2.6.*",
"vue-template-compiler": "^2.0.0",
"webpack-cli": "^4.9.2",
"webpack-dev-middleware": "^5.3.1",
"@vue/cli": "^5.0.1",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-service": "^5.0.1",
"babel-loader": "^8.2.3",

And app complied without this error.

Leave a comment