❗ Incorrect Target Target version mismatch. You can specify the target version in vueCompilerOptions.target in tsconfig.json / jsconfig.json. (Expected "target": 2.7) vue version: 2.7.14 tsconfig target: 3 (default) vue: /Users/shenglei/Downloads/vue/myvue1/node_modules/vue/package.json tsconfig: file:///Users/shenglei/Downloads/vue/myvue1/jsconfig.json
时间: 2023-07-31 11:07:30 浏览: 173
详解关于Vue版本不匹配问题(Vue packages version mismatch)
这个问题的意思是你的 Vue 版本是 2.7.14,但是你的 TypeScript 编译器的目标版本是 3。为了解决这个问题,你需要在你的项目中的 `tsconfig.json` 或者 `jsconfig.json` 文件中指定目标版本为 2.7。你可以在 `vueCompilerOptions` 中添加一个 `target` 属性,并将其设置为 2.7,像这样:
```
{
"compilerOptions": {
// other options
"target": "es5"
},
"vueCompilerOptions": {
"target": 2.7
}
}
```
这样就可以解决这个问题了。记得保存文件并重新编译你的项目。
阅读全文