不积跬步无以至千里,不积小流无以成江海

 Administrator     2022-07-22      前端框架      1811

vscode里【Vue】组件template中提示“TypeScript intellisense is disabled on template. To enable, configure `“jsx“: ”错误

解决方案有两种

1、在项目中的 tsconfig.json 文件中加入以下配置

// tsconfig.json
{
  // ...其他配置

  // 加入这一段
  "vueCompilerOptions": {
    "experimentalDisableTemplateSupport": true
  },
}

2、卸载掉Vue Language Features (Volar)插件