[Vuejs]-TypeError: Merging undefined is not supported

3๐Ÿ‘

โœ…

So the issue is the wrong quasar version.

My dependencies are

"dependencies": {
  "quasar": "^1.0.0",
  ...
},
"devDependencies": {
  "@quasar/app": "^2.0.0",

But when I ran npm install, it asked me to ran npm audit fix --force and it would change the @quasar/app version. You would need to reset the package.json and run npm install again to fix it.

14 vulnerabilities (7 moderate, 7 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force
๐Ÿ‘คangelokh

Leave a comment