Vscode 编写 vue 常见问题及解决方法
共计 390 个字符,预计需要花费 1 分钟才能阅读完成。
- 【TypeScript】JSX 元素隐式具有类型 “any“,因为不存在接口 “JSX.IntrinsicElements“。ts(7026)
{
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "vue",
// ...
}
}
vue 大于等于 3.4 看此链接:https://vuejs.org/guide/extras/render-function.html#jsx-type-inference
- Cannot find module … or its corresponding type declarations.(ts2307)
vscode 中快捷键 ctrl
+ shift
+ p
,搜索 Select TypeScript Version
,选择 Use WorkspaceVersion
选项,然后重启 vscode。
这里需要先执行 pnpm install 才能进行选择。
Tips:清朝云网络工作室
阅读剩余
THE END