美文网首页
VUE生成dom后执行函数

VUE生成dom后执行函数

作者: ThemisHoo | 来源:发表于2020-06-02 17:50 被阅读0次

    需求,动态生成列表数据,列表中有echarts表格

    echarts渲染图形时,需要当然dom已经生成

    调用API获取数据后,动态生成dom后,再获取dom

    使用this.$nextTick方法

    this.list = res.data
    this.$nextTick(() => {
      // 执行
     var myChart = eval(
                      `echarts.init(document.getElementById("${ele.appKey}"))`
                    );
    })
    

    相关文章

      网友评论

          本文标题:VUE生成dom后执行函数

          本文链接:https://www.haomeiwen.com/subject/mlhpzhtx.html