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)
  }
   


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

上一篇:apache修改执行时间


下一篇:linux下编译nginx-1.10.1报错:src/http/ngx_http_parse.c:1384:32: warning: this statement may fall through [-Wimplicit-fallthrough=]