在vue项目中使用echarts

1.安装echarts依赖

npm install echarts --save
2.在要使用的页面引入

import echarts from 'echarts'

v5之后使用
import * echarts from 'echarts'
 

3.使用时在mounted中使用
        //此时页面上的元素已经被渲染完毕
        mounted() {            
    var myChart = echarts.init(document.getElementById('echart1'));
        },        

 

 
posted @ 2020-10-23 13:13  何以平天下  阅读(273)  评论(0编辑  收藏  举报