I am in the process of developing a Vue.js application with Vuex and have encountered some errors during the build. I attempted to resolve the issue by installing
npm install --save core-js/fn/symbol
, but unfortunately, it did not work as expected.
https://i.stack.imgur.com/NmGki.png
Attached is my package.json file:
"dependencies": {
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.19.0",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"}
Initially, I followed a video tutorial without encountering any errors, leading me to believe that this may be due to version discrepancies. Any advice would be greatly appreciated. Thank you.
Edit: I also attempted to install just npm install --save core-js
, but the error persists.