❗ 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 具体怎么改
时间: 2023-07-28 09:10:22 浏览: 286
详解关于Vue版本不匹配问题(Vue packages version mismatch)
你可以按照以下步骤来解决这个问题:
1. 打开项目根目录下的 `jsconfig.json` 或 `tsconfig.json` 文件,如果没有,可以在项目根目录下创建这个文件。
2. 在 `compilerOptions` 选项中添加 `vueCompilerOptions` 属性,例如:
```
"compilerOptions": {
"vueCompilerOptions": {
"target": "2.7"
}
}
```
这个配置会将 `vueCompilerOptions.target` 设置为 2.7,与你使用的 Vue 版本匹配。
3. 保存文件,重新启动项目。
这样应该就能够解决你遇到的版本不匹配的问题了。希望可以帮到你!
阅读全文