App.vue Doctor ❗ 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 vueCompilerOptions: { "extensions": [ ".vue" ] }
时间: 2023-12-03 13:04:44 浏览: 79
这个错误是由于你的 TypeScript 编译器的目标版本和 Vue 的版本不匹配所导致的。你可以在项目的 `tsconfig.json` 或 `jsconfig.json` 文件中指定编译器的目标版本。在 `vueCompilerOptions` 对象中添加一个 `target` 属性并将其值设置为 `2.7` 即可解决这个问题。
例如:
```json
{
"compilerOptions": {
"target": "esnext"
},
"vueCompilerOptions": {
"target": 2.7,
"extensions": [".vue"]
}
}
```
在这个例子中,我们将 `target` 属性设置为了 `2.7`,以匹配 Vue 的版本。同时,我们也保留了 TypeScript 编译器的默认目标版本 `esnext`。
阅读全文