当前位置:   article > 正文

vue 引入 echarts,init初始化报错_echarts.init

echarts.init

vue 引入 echarts,init初始化报错


1.下载echarts

npm install echarts --save
  • 1

2.页面中引入,我只有一个页面需要引用到echarts,所以就直接在页面中引入

import echarts from 'echarts'
  • 1

3.在methods中写对应的例子

myEcharts() {
      this.chart = echarts.init(document.getElementById('main'))

      this.chart.setOption({
        tooltip: {
          trigger: 'item',
          formatter: '{a} <br/>{b} : {c} ({d}%)'
        },
        legend: {
          bottom: 10,
          left: 'center',
          data: ['已出租', '未出租', '已预约']
        },
        series: [
          {
            name: '车辆出租状态',
            type: 'pie',
            radius: '55%',
            center: ['50%', '40%'],
            data: [
              { value: 40, name: '已出租' },
              { value: 30, name: '未出租' },
              { value: 30, name: '已预约' }
            ],
            emphasis: {
              itemStyle: {
                shadowBlur: 10,
                shadowOffsetX: 0,
                shadowColor: 'rgba(0, 0, 0, 0.5)'
              }
            }
          }
        ]
      })
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

4.在mounted中引用方法

mounted() {
    this.myEcharts()
  }
  • 1
  • 2
  • 3

结果报错,报init初始化错误
在这里插入图片描述
找了半小时,才找到原因,是import方式不对
需要将原先的import echarts from 'echarts'改成import * as echarts from 'echarts'。官网中更新的写法。改完之后刷新页面就可以了
在这里插入图片描述
如果系统中很多地方都需要用到echarts,就在main.js中全局引入

import * as echarts from 'echarts'

Vue.prototype.$echarts = echarts
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/124013
推荐阅读