baozhengrui

导航

echarts图dom问题

1.使用ref代替获取id

var myChartKnow = echarts.init(this.$refs.charts1)
myChartKnow.setOption(this.option)

2.使用

this.$nextTick(() => {
                    this.getinit()
                });

3.如果是弹窗则监听他的打开状态·

watch: {
        drawer(val) {
            if (val) {
                this.$nextTick(() => {
                    this.getinit()
                });
            }
        }
    },

posted on 2024-10-10 15:41  芮艺  阅读(7)  评论(0编辑  收藏  举报