4.记录Vue项目引入Echart.js图表插件
2020-08-16 本文已影响0人
饿了么配送员
1.安装ECharts依赖
npm install echarts -S

2.在需要的页面引入ECharts

3.绘制图表
首先创建一个DIV包裹图表
<template>
<div>
<div ref="chart" :style="{width: '1500px', height: '800px'}"></div>
</div>
</template>
4.渲染图表

