link : https://www.cnblogs.com/strinkbug/p/5786222.htmlcss
1、i在html中添加script標籤以下:html
<script src="//cdn.bootcss.com/echarts/3.2.2/echarts.simple.min.js"></script>vue
2、在webpack中配置echarts 在webpack.base.conf.js文件內添加external選項,在module.exports內部,和entry平級;webpack
externals: {web
"echarts": "echarts"echarts
},this
externals中的key是給import的時候用的,value表示的是如何在global中訪問到該對象,這裏是window.echartscdn
3、在須要使用echart的vue頁面引入echarthtm
import echarts from 'echarts'對象
this.myChart = echarts.init(document.getElementById('line1'))
this.myChart.setOption(option)