ECharts使用过程遇到的问题汇总
程序员文章站
2022-07-02 13:57:05
获取ECharts npm install echarts save
获取echarts
npm install echarts --save
自定义构建echarts
我选用的是常用版的echarts/dist/echarts.common.js
在我的项目根目录下myproject新建echarts.common.js,然后将echarts.common.js压缩到lib下的压缩文件echarts.common.min.js时遇到一点问题
首先是各种包没有安装,就依次安装就好
其次是出现如下错误:
typeerror: uglifyplugin is not a function
我采用的是安装webpack,可能需要打包工具,然后是rollup-plugin-uglify版本太高,重新安装rollup-plugin-uglify@3.0.0,再重新安装就可以了
上一篇: C++11智能指针的理解