警告 Unexpected any. Specify a different type

Vue3.0 + Typescript 项目中,Unexpected any. Specify a different type

在这里插入图片描述
如要关闭any类型的警告:

.eslintrc.js文件中找到rules配置,添加如下代码
"@typescript-eslint/no-explicit-any": ["off"]

添加完成后,重新运行项目。

猜你喜欢

转载自blog.csdn.net/m0_50207524/article/details/129938207