data:{ myChart:null } methods:{ //初始化 获取到dom元素 init(){ this.myChart = echarts.init(this.$refs.areaRankingAll); } resize() { this.myChart.resize(); }, } mounted(){ window.addEventListener("resize", this.resize, true); } beforeDestroy() { // 在组件生命周期结束的时候销毁。 window.removeEventListener("resize", this.resize, true); },
标签:适应,init,myChart,图表,window,true,echarts,resize From: https://www.cnblogs.com/qdyzhuang/p/16973691.html