TypeScript intellisense is disabled on template error Vue JS 2 in VS Code

TypeScript intellisense is disabled on template. To enable, configure "jsx": "preserve" in the "compilerOptions" property of tsconfig or jsconfig. To disable this prompt instead, configure "experimentalDisableTemplateSupport": true in "vueCompilerOptions" property.

Before

add this line in jsconfig.js file

"jsx": "preserve"

After

Leave a Comment