jsPlumbBrowserUI.getInstance 不是函数

jsPlumbBrowserUI.getInstance is not a function

我正在尝试根据文档 https://docs.jsplumbtoolkit.com/community/ 在我的 angular 项目中设置 @jsplumb/browser-ui 。但是,我无法访问 getInstance 方法。

import * as jsPlumbBrowserUI from '@jsplumb/browser-ui';

const instance = jsPlumbBrowserUI.getInstance({
      container: this.wrapper
  })

如何将其集成到 angular 中?

没有getInstance函数,您可以使用newInstance:

const instance = jsPlumbBrowserUI.newInstance({
      container: this.wrapper
  })

这些是最新的文档。它们现在已更新为显示 newInstance 而不是 getInstance

5.0版本的各种演示可以在这里找到:

https://github.com/jsplumb-demonstrations