共计 304 个字符,预计需要花费 1 分钟才能阅读完成。
须要在 src 文件下减少一个.d.ts 文件
写入
declare module "*.vue" {
import Vue from 'vue'
export default Vue
}
即可
JSX 元素隐式具备类型 “any”,因为不存在接口 “JSX.IntrinsicElements”。ts(7026)
两个解决方案
在 tsconfig.json 不应用严格查看
{
“compilerOptions”: {
"strict": false
}
}
或者加这个
{
“compilerOptions”: {
"noImplicitAny": false, // 是否在表达式和申明上有隐含的 any 类型时报错
}
}
http://news.wemorefun.com/pre…
正文完
发表至: typescript
2022-05-30