用TS重构项目,出现Property '$echarts' does not exist on type 'default',翻译了一下,属性“$echarts”在类型“default”上不存在
原答主 写的很详细,大家可以参考一下
原主解决方法:
方法一:this.$echarts
更改为(this as any).$echarts
方法二:this.$echarts
更改为this['$echarts']
我一开始用的第二种解决方法,但是还是未解决,显示
Element implicitly has an 'any' type because expression of type '"$ehcarts"' can't be used to index type 'default'.
元素隐式具有“any”类型,因为类型“$ehcart”的表达式不能用于索引类型“default”。
我尝试在tsconfig,json设置不允许有隐式any,无法解决
最后还是换成了第一种解决方案o(╥﹏╥)o