第一步:安装echarts
npm install echarts -S
cnpm install echarts -S
第二步:在main.js中全局引入
import * as echarts from 'echarts';
Vue.prototype.$echarts = echarts
第三步:在你的组件或页面中创建vue项目
<div id="myChart" :style="{width: '600px', height: '600px'}"></div>
js部分代码:
export default {
mounted(){
this.drawLine();
},
methods: {
drawLine(){
// 基于准备好的dom,初始化echarts实例
let myChart = this.$echarts.init(document.getElementById('myChart'))
// 绘制图表
myChart.setOption({
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [150, 230, 224, 218, 135, 147, 260],
type: 'line'
}]
});
}
}
}