wsfe / vue-tree

使用虚拟列表优化的 Vue 树组件 Vue tree component optimized using virtual list
https://wsfe.github.io/vue-tree/
MIT License
176 stars 32 forks source link

能否增加拖动前判断函数 #90

Closed kawais closed 1 month ago

kawais commented 5 months ago

如beforeDragMethod,返回true表示可拖动,false不可拖动 就像beforeDropMethod那样

ChuChencheng commented 2 months ago

dragstart 事件里面执行 event.preventDefault() 的话感觉可行

ChuChencheng commented 2 months ago

或者你可以试试监听 node-dragstart 事件?里面就有节点信息跟 DragEvent 参数

ChuChencheng commented 1 month ago

参考这个不用新增 API 同样可以实现