一个echarts的自定义组件,在h5端ok,app端就报this.$refs.echartsEl.reset is not a function
不是说$refs可以在自定义组件上使用的吗
下面是代码:
//父页面
<echarts-el ref='echartsEl':option="option1" style="height: 700rpx;"></echarts-el>
bindPickerChange(e) {
this.index = e.detail.value
if(parseInt(this.index) == 0) {
this.$refs.echartsEl.reset(this.option1)
} else if(parseInt(this.index) == 1) {
this.$refs.echartsEl.reset(this.option2)
}
},
//组件
reset(option) {
this.chart.clear()
this.chart.setOption(option, option.notMerge)
},
1 个回复
8***@qq.com
解决了吗,我也遇到了,在android里面