Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢 Dragula 的工作原理,但我找不到解决方案的一件事是,我如何禁用拖放功能在元素当前所在的同一容器中。我只想将元素拖到其他容器中而不是对它们进行排序手动。
你让它从接受选项(一个函数)返回 false
这是来自离子设置,但它是相同的:
在构造函数内部:
dragulaService.setOptions('my-bag', { accepts: (el, target, source, sibling) => { if (!target || !source || (target == source)) return false; } });