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
在jsconfig.json文件中添加下面内容
{
"compilerOptions": {
"jsx": "preserve"
}
}