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)插件
上一篇:vscode常用插件及vue
下一篇:npm包制作流程