Demo:基于webpack+vue-cli
首先要: npm i echarts --save
然后在需要使用的地方进行导入
<template lang="jade">
#main(style="width:600px;height:400px;")
</template>
<script>
export default {
mounted() {
this.showChart()
},
methods: {
showChart() {
var echarts = require('echarts')
var myChart = echarts.init(document.getElementById('main'))
// 绘制图表
myChart.setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
})
}
}
}
</script>
<style lang="css">
</style>
![](https://img.haomeiwen.com/i13263206/2b55dc2132ed6cf8.png)
网友评论