vue.draggable.next
vue.draggable.next copied to clipboard
Vue 3 compatible drag-and-drop component based on Sortable.js
Cannot set properties of null (setting '__draggable_context') vue3.2 之后 无法获取到 node.el bug 修复 Bug fix 在使用 tag="transition-group" 的时候,需要至少两层 html 标签 ``` {{ element.name }} ```
Big thanks to @divinespear for the original Multidrag support in vue.draggable (https://github.com/SortableJS/Vue.Draggable/pull/1052). I've ported it to Vue 3 (vue.draggable.next). I've also added support for the Swap plugin!
I'm getting a strange red error, but only in the DOM. Vanilla console / Vue utility do not show any error. I'm using Vue 3 with Vuex 4 and VueDraggable...
When i put a code comment in the Draggable component slot, it will throw error.
* Improve Docs to contain the fact that the element and index object can be destructured and custom variable names are possible
I know `src` is written in ESM, but it won't work in a browser context, at least not without a ton of import maps (which are only supported in Chrome...
### Test link [Test Link](https://stackblitz.com/edit/vue-gmwmmw?file=src/components/HelloWorld.vue) ### Step by step scenario - create a new draggable instance - create a custom method that throws an arbitrary error - via a slot,...
### Step by step scenario - have 2 vuedraggables - set first `:list1 = "[ first, second ]"`, second `:list2 = "[ third, forth ]"` - drag `second` - move...
### Step by step scenario - set `:list = [ first, second, third ]` - start dragging `second` - set `:list = [ second, first, third ]` (visually with no...
I've got an application with multiple lists. Users can drag items between lists to move them. I'm trying to capture an event that contains information about both the source and...