❗ 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:
时间: 2023-07-29 21:10:39 浏览: 168
根据你提供的错误信息,可以看出是 Vue 和 TypeScript 的版本不匹配导致的错误。解决这个问题,你需要将 TypeScript 的目标版本修改为 2.7,与你使用的 Vue 版本匹配。可以按照以下步骤进行修改:
1. 打开项目根目录下的 `tsconfig.json` 文件,如果没有,可以在项目根目录下创建这个文件。
2. 在 `compilerOptions` 选项中添加 `target` 属性,并将其设置为 2.7,例如:
```
"compilerOptions": {
"target": "2.7",
...
}
```
如果你使用的是 `jsconfig.json` 文件,也可以在其中添加相同的配置。
3. 如果你使用了 Vue CLI 3.x,你还需要在 `vue.config.js` 文件中添加以下内容:
```
module.exports = {
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
extensions: ['.ts', '.tsx', '.js', '.vue', '.json'],
},
},
};
```
这个配置会将 webpack 的解析路径和扩展名添加到项目中,以便识别 TypeScript 文件。
4. 保存文件,重新启动项目。
这样应该就能够解决你遇到的版本不匹配的问题了。如果还有其他问题,请联系我,我会尽力帮助你。
阅读全文