dg-publish: true
this.$echarts.init(document.getElementById('echarts-container')).setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data: ['销量']
},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [
{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
})
在mounted中使用,也可在method中创建方法,在mounted中使用
import * as echarts from "echarts";
Vue.prototype.$echarts=echarts
引入方式