一、获取 ECharts
通过 npm 获取 echarts,npm install echarts --save
使用这个语句的时候出现了错误,后来发现是应当改为
cnpm install echarts --save
二、引入 ECharts
若是整个项目都需要使用,则直接在在main.js中,引入echart
import echarts from 'echarts' // 引入echarts
若仅仅是某个页面需要使用,在script
中引入echarts
var echarts = require('echarts')
三、根据需求绘制图表
在App.vue
文件的<template></template>
中创建一个容器
<template>
<div id="app">
<!--创建一个echarts的容器-->
<div id="lineChart" style="width: 600px;height:400px;position: absolute;top: 130px;"></div>
<div id="dataChart" style="width: 600px;height:400px;left: 700px;top: 130px;"></div>
</div>
</template>
在script中
mounted() {
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('echartContainer'));
// 绘制图表
myChart.setOption({
title: { text: 'ECharts 入门示例' },
tooltip: {},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
});
}
根据官方文档可以添加各种图表