1 安装echarts
npm install echarts --save
2 main.js
中引用和声明
3 组件中使用
// 声明
data() {
myChart: null
}
// 调用
mounted() {
this.draw()
}
// 定义
methods: {
draw() {
this.myChart = this.$echarts.init(document.getElementById(''));
this.myChart.setOption({})
}
}
4 echarts
窗口自适应
mounted() {
window.addEventListener('resize', () => {
this.myChart.resize()
})
}