Target version not match, you can specify the target version in vueCompilerOptions.target in tsconfig.json / jsconfig.json. (expected “target”: 2.7)

这是因为安装了vue3对应的插件volar之后打开了vue2版本的项目导致的,需要在jsconfig.json里主动指明当前版本
image

在项目根路径jsconfig添加以下配置即可

"vueCompilerOptions": {
    "target": 2.7
  }

image

 posted on 2022-11-04 20:51  Joker_Ly  阅读(62)  评论(0编辑  收藏  举报