首页 > 建站教程 > 前端框架 >  在vue-cli项目中使用echarts(亲测,可行)正文

在vue-cli项目中使用echarts(亲测,可行)

这个示例使用 vue-cli 脚手架搭建,所以直接来:

安装echarts依赖
1npm install echarts -S
或者使用国内的淘宝镜像:

安装cnpm 使用CNPM安装echarts
1cnpm install echarts -S
创建图表

1、全局引入(打包后文件非常大,不建议)

main.js
1// 引入echarts
2import echarts from 'echarts'
3Vue.prototype.$echarts = echarts
Hello.vue
01//图标显示
02<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
03 
04//配置
05export default {
06  name: 'hello',
07  data () {
08    return {
09      msg: 'Welcome to Your Vue.js App'
10    }
11  },
12  mounted(){
13    this.drawLine();
14  },
15  methods: {
16    drawLine(){
17        // 基于准备好的dom,初始化echarts实例
18        let myChart = this.$echarts.init(document.getElementById('myChart'))
19        // 绘制图表
20        myChart.setOption({
21            title: { text: '在Vue中使用echarts' },
22            tooltip: {},
23            xAxis: {
24                data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
25            },
26            yAxis: {},
27            series: [{
28                name: '销量',
29                type: 'bar',
30                data: [5, 20, 36, 10, 10, 20]
31            }]
32        });
33    }
34  }
35}
    注意: 这里echarts初始化应在钩子函数mounted()中,这个钩子函数是在el 被新创建的 vm.$el 替换,并挂载到实例上去之后调用

2、按需引入
    上面全局引入会将所有的echarts图表打包,导致体积过大,所以我觉得最好还是按需引入。

Hello.vue
01<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
02 
03 
04// 引入基本模板
05let echarts = require('echarts/lib/echarts')
06// 引入柱状图组件
07require('echarts/lib/chart/bar')
08// 引入提示框和title组件
09require('echarts/lib/component/tooltip')
10require('echarts/lib/component/title')
11export default {
12  name: 'hello',
13  data() {
14    return {
15      msg: 'Welcome to Your Vue.js App'
16    }
17  },
18  mounted() {
19    this.drawLine();
20  },
21  methods: {
22    drawLine() {
23      // 基于准备好的dom,初始化echarts实例
24      let myChart = echarts.init(document.getElementById('myChart'))
25      // 绘制图表
26      myChart.setOption({
27        title: { text: 'ECharts 入门示例' },
28        tooltip: {},
29        xAxis: {
30          data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
31        },
32        yAxis: {},
33        series: [{
34          name: '销量',
35          type: 'bar',
36          data: [5, 20, 36, 10, 10, 20]
37        }]
38      });
39    }
40  }
41}


    注:这里之所以使用 require 而不是 import,是因为 require 可以直接从 node_modules 中查找,而 import 必须把路径写全。