安装 cnpm install echarts -S
main.js 中写入 mport echarts from 'echarts' Vue.prototype.$echarts = echarts
charts.vue 页面中
<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
export default { name: 'hello', data () { return { msg: 'Welcome to Your Vue.js App for myChart' } }, mounted(){ this.drawLine(); }, methods: { drawLine(){ // 初始化echarts实例 let myChart = this.$echarts.init(document.getElementById('myChart')) // 画图 myChart.setOption({ title: { text: '在Vue中使用echarts' }, tooltip: {}, xAxis: { data: ["棉袜","臭袜子","蕾丝袜","船袜","高装袜","五指袜"] }, yAxis: {}, series: [{ name: '销量', type: 'bar', data: [50, 10, 150, 78, 26, 108] }] }); } } }