❗ 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/🌏/vuet9/node_modules/vue/package.json tsconfig: file:///Users/shenglei/Downloads/%F0%9F%8C%8F/vuet9/jsconfig.json vueCompilerOptions: { "extensions": [ ".vue" ] }
时间: 2023-12-03 07:04:45 浏览: 68
根据提示信息,你需要在`jsconfig.json`或`tsconfig.json`文件中指定正确的目标版本。以下是两个文件的示例配置:
For jsconfig.json:
```
{
"compilerOptions": {
"target": "es5"
},
"exclude": ["node_modules"]
}
```
For tsconfig.json:
```
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true
},
"exclude": ["node_modules"]
}
```
请注意,这里的目标版本需要与你的Vue版本相对应。在你的示例中,Vue版本为2.7.14,因此目标版本应该设置为`"es5"`。如果你使用的是其他版本的Vue,需要根据实际情况进行调整。
如果你已经在`jsconfig.json`或`tsconfig.json`中指定了正确的目标版本,但是仍然收到错误提示,请检查一下你的Vue编译选项是否正确。你可以在`vue.config.js`中添加以下代码:
```
module.exports = {
configureWebpack: {
resolve: {
alias: {
vue$: "vue/dist/vue.esm.js"
}
}
},
chainWebpack: config => {
config.module
.rule("vue")
.use("vue-loader")
.tap(options =>
Object.assign(options, {
compilerOptions: {
target: "es5"
}
})
);
}
};
```
这样就可以将编译选项中的目标版本设置为`"es5"`了。
阅读全文