VScode 报错 TypeScript intellisense is disabled on template

VScode 报错 TypeScript intellisense is disabled on template,第1张

发现问题

vscode 安装 Vue Language Features (volar) 后出现 :

TypeScript intellisense is disabled on template, you can config “jsx”: “preserve” in tsconfig or jsconfig to enable it, or config vueCompilerOptions.experimentalDisableTemplateSupport to disable this prompt.

解决问题

问题的描述是:TypeScript智能感知在模板中是禁用的,你可以在tsconfig或jsconfig中配置’ “jsx”: "preserve"来启用它,或者配置’ vueCompilerOptions '。 使用experimentalDisableTemplateSupport来禁用这个提示。那么我们根据描述解决问题

// 在文件 jsconfig.json 中
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@/*": [
        "src/*"
      ]
    },
    "jsx": "preserve" //添加配置
  },
  "exclude": [
    "node_modules",
    "dist"
  ]
}

问题得以解决。

如果还会存在问题,可以使用vetur插件格式化文档。将Vue Language Features (volar) 禁用后重启VScode即可。


点赞 评论 收藏 ~~ 留言讨论,如有错误,也希望大家不吝指出。 ~~ 点赞 评论 收藏

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/944809.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存