我们在项目中的tsconfig.json文件中添加:
“suppressImplicitAnyIndexErrors”:true,
详细查看
或者

console.log(popupTypes[popupViewType]); // error 元素隐式具有 "any" 类型,因为类型为 "string" 的表达式不能用于索引类型

//这样就好了
let aaa = popupTypes[popupViewType as keyof typeof popupTypes];
console.log(aaa);// aaa
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐