2019-03-17 echarts显示width:100px;
2019-03-17 本文已影响0人
qiaoguoxing
可以尝试使用Vue.nextTick来试试。
类似下面这个代码的写法,重新渲染一遍。
this.$nextTick(function(){
_this.myChart = echarts.init(document.getElementById("totalChart"));
_this.myChart.setOption(option);
_this.myChart.resize();
})