gthdweb
Results
1
comments of
gthdweb
// edge hover移除删除按钮 graph.on('edge:mouseleave', ({ edge }) => { setTimeout(() => { //立即移除会导致edge-editor输入内容消失 edge.removeTool('button-remove'); }, 499); }); 暂时用了延迟移除解决了此问题,希望后续能有更优雅的解决方案