检查方法:
1、id是否重复
2、没有设置高度
<div id="chart_id" style="100%;height:376px"></div>
3、确保dom元素已经挂载到页面中,初始化echart写在mounted中
mounted(){ this.initEchart() },
或者使用$nextTick
this.$nextTick(() => { this.initEchart(); });