HomeView.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/ivue/node_modules/vue/package.json tsconfig: file:///Users/shenglei/Downloads/Vue/ivue/jsconfig.json vueCompilerOptions: { "extensions": [ ".vue" ] } Have any questions about the report message? You can see how it is composed by inspecting the source code.怎么解决
时间: 2024-01-03 13:03:23 浏览: 119
HomeView.vue
您可以按照报告中的建议,在 tsconfig.json 或 jsconfig.json 文件中设置 vueCompilerOptions.target 为 2.7,以解决版本不匹配的问题。您可以尝试在 tsconfig.json 文件中添加以下内容:
```
{
"compilerOptions": {
"target": "es6"
},
"vueCompilerOptions": {
"target": 2.7
}
}
```
或者在 jsconfig.json 文件中添加以下内容:
```
{
"compilerOptions": {
"target": "ES6"
},
"vueCompilerOptions": {
"target": 2.7
}
}
```
在设置完成后,重新编译项目即可。
阅读全文