beezen/echarts4taro3

内存泄漏

Closed this issue · 1 comments

demo-vue3点击刷新,DOM Nodes会一直增加,无法回收
image

onBeforeUnmount(() => {
  const echartsInstance = canvas.value?.getChart()
  if (echartsInstance) {
    echartsInstance.off()
    echartsInstance.clear()
    echartsInstance.dispose()
  }
})