vue引入echart.js打包时特别大

梦想与她 提交于 2019-12-02 00:30:36

link : https://www.cnblogs.com/strinkbug/p/5786222.html

一、i在html中添加script标签如下:

<script src="//cdn.bootcss.com/echarts/3.2.2/echarts.simple.min.js"></script>

二、在webpack中配置echarts 在webpack.base.conf.js文件内添加external选项,在module.exports内部,和entry平级;

externals: {

"echarts": "echarts"

},

externals中的key是给import的时候用的,value表示的是如何在global中访问到该对象,这里是window.echarts

三、在需要使用echart的vue页面引入echart

import echarts from 'echarts'

this.myChart = echarts.init(document.getElementById('line1'))

this.myChart.setOption(option)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!