码迷,mamicode.com
首页 > 其他好文 > 详细

vue中e-charts的基本使用

时间:2019-10-11 18:26:58      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:使用   token   name   初始化   word   span   from   install   charts   

1.安装e-charts项目依赖

npm install echarts --save

或者

npm install echarts -S

2.引入项目中

全局引入(main.js)

import echarts from ‘echarts‘

Vue.prototype.$echarts = echarts

这种方法是直接绑定在vue实例上,所以在项目中任何页面,直接 this.$echarts 即可

局部引入(需要的页面进行引入)

import echarts from ‘echarts‘

 

3.初始化echarts

首先在你需要echarts的页面中得创建一个dom元素

<div id="myCharts" ref="myCharts"></div>

其次,在mounted中初始化echarts( 不能写在created中)

1.const  myCharts = this.$echarts.init(this.$refs.myCharts);
2.let options = {
xxx
}
3.
myCharts.setOption(options);
 

 






vue中e-charts的基本使用

标签:使用   token   name   初始化   word   span   from   install   charts   

原文地址:https://www.cnblogs.com/xiao-peng-ji/p/11655564.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!