我尝试了很多,但无法找到解决方案。请帮助我,因为我对这个问题感到震惊超过 1 天。任何帮助将非常感激。
我有一个Syncfusion
使用.Angular
Vuejs
ejsdiagram methods
在Angular
我使用以下代码和相应的方法:
<ej-diagram id="diagram" e-height="80vh" e-width="100%" e-nodeCollectionChange="nodeCollectionChange" e-connectorCollectionChange="connectorCollectionChange" e-connectorTargetChange="connectorTargetChange" e-connectorSourceChange="connectorSourceChange" e-textChange="textChange"></ej-diagram>
现在我正在使用这样的东西Vuejs
:
<div id="app">
<ejs-diagram
id="diagram"
ref="diagramObj"
:width="width"
:height="height"
:collection-change="collectionChange"
:e-connector-collection-change="connectorCollectionChange"
/>
div>
我想知道 , 等的Vuejs
等效功能e-connectorCollectionChange
,e-connectorTargetChange
我搜索了很多但找不到任何文档,或者我错过了一些东西。有人可以指导我完成这个吗?
基本上,我想在我的Vuejs+Syncfusion
应用程序中有这样的东西。我有它Angular+Syncfusion
: