1.首先npm install echarts --save
2.在需要用到的地方引入模块import echarts from 'echarts'
3.定义一个容器<div ref="chartAllData" style="height:240px;width:100%;text-align:center;"></div>
4.在js逻辑中加载:
this.initComponent()
this.chartAllData = echarts.init(this.$refs.chartAllData)
this.chartAllData.setOption({
})