1,通过npm获取echarts
npm install echarts --save
2,在vue项目中引入echarts
在main.js中添加
import echarts from 'echarts'
Vue.prototype.$echarts=echarts
import echarts from 'echarts' 引入echarts后,不能全局使用echarts,
所以通过Vue.prototype 将echarts保存为全局变量。原则上$echarts可以为任意变量名。
3,新建Echarts.vue文件
- 在template中添加一个div容器,存放echarts
- 添加myEcharts()方法,
- 初始化echarts.init,如果是全局的就是this.$echarts.init()
- 在mounted中调用myEcharts()方法
<template>
<div class="Echarts">
<!--<div ref="cgsJ" style="height:380px;background:#fff"></div>-->
<div id="main" style="width: 600px;height:400px;"></div>
</div>
</template>
<script>
export default {
name: 'Echarts',
methods:{
myEcharts(){
// 基于准备好的dom,初始化echarts实例
//this.cgsJg=echarts.init(this.$refs.cgsJ);(自己联系的项目中)
var myChart = this.$echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data:['销量']
},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
}
},
mounted() {
this.myEcharts();
}
}
</script>
本例函数使用ES6写法。mounted() { }等同mounted:function() { } myEcharts()方法同理最后,添加进行路由配置。运行项目效果如下
参考的文章原文链接https://www.cnblogs.com/ludeng-blog/p/12531903.html
网友评论