首页 > 技术文章 > vue中 dhtmlx-gantt 甘特图清空缓存

ybixian 2020-06-30 18:32 原文

清空 gantt.clearAll()

在 create中 gantt.clearAll() // 先清空,再添加,就不会有缓存

  created () {
    gantt.clearAll() // 先清空,再添加,就不会有缓存
  },
  mounted: function() {
    setTimeout(() => {
      gantt.init(this.$refs.gantt)
      gantt.parse(this.$props.tasks)
    }, 200)
  }
   


推荐阅读