vue中 dhtmlx-gantt 甘特图清空缓存

清空 gantt.clearAll()

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

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


posted @ 2020-06-30 18:32  山村码农  阅读(2311)  评论(0编辑  收藏  举报