cc

Results 7 comments of cc

> 感觉如果用ts还是midway这个比较好,egg.js好像对ts支持不太好 项目都快写完了,不可能再去用midway去重构😂

> 你是不是写错了,get('instanceName").set("test", "111") get出来的是这个对象的string,不是client的set,应该是分开用的 没有,你用redis原生写就是正确的

I also encountered this bug, but I did not reproduce it in the demo! this version is latest 9.1.0 ![image](https://github.com/maslianok/react-resize-detector/assets/33613409/c24fc8d1-364a-40e6-b561-2f86010f6eb5) [This is a Demo](https://codesandbox.io/p/sandbox/heuristic-perlman-4th2g6?welcome=true)

`node:dragleave`的问题根源是,在drag到另一个节点上时,并且在节点内快速移动,就会错误的触发dragleave,很慢的移动则是正常现象🔴 ✅✅✅✅✅故此,用用其他方法实现了 ``` stack: [], ``` ``` onDragEnter(e) { const item = e.item; if (!this.dragItem || !this.isMouseDown || !item) { return } const self = this; const model = item.getModel();...