我以这种方式使用NPM,echarts库进行安装

npm install echarts --save


按照我在代码中编写的documentation

import * as echarts from 'echarts'

然后我尝试了一个非常简单的例子

const $chart = $('#chart')
let myChart = echarts.init($chart)
const option = {
  title: {
    text: 'ECharts entry example'
  },
  tooltip: {},
  legend: {
    data: ['Sales']
  },
  xAxis: {
    data: ['shirt', 'cardign', 'chiffon shirt', 'pants', 'heels', 'socks']
  },
  yAxis: {},
  series: [
    {
      name: 'Sales',
      type: 'bar',
      data: [5, 20, 36, 10, 10, 20]
    }
  ]
}
myChart.setOption(option)


但是我得到这个错误

ReferenceError: __DEV__ is not defined


您认为出了什么问题?我找不到有关此错误的文档...

最佳答案

我有以下进口echarts,它的工作原理

import * as echarts from 'echarts/dist/echarts.js';

10-08 19:15