[Chartjs]-Importing and using Echarts results in [object error] in Internet Explorer

1👍

You may try to modify the way of using echarts.

Change

import ECharts from "vue-echarts/components/ECharts.vue";

to

import ECharts from 'vue-echarts'

The first way seems not compatible with IE.

Leave a comment