sortablejs-vue3
sortablejs-vue3 copied to clipboard
A thin wrapper around Sortable.js for Vue 3
Hello, within the events I need to know the id of my element, but I cant access the element: ``` ... ``` This is because I need to know which...
Hello, I don't now if it is possible, but the `template #header` element should not have an impact on oldIndex and newIndex. At the moment, when this element is used,...
My code is like this: ```vue {{ element.name }}{{ element.id }} import { reactive } from "vue" import { Sortable } from "sortablejs-vue3" const list = reactive([ { id: "111",...
tldr: https://github.com/vuejs/vitepress/issues/1399#issuecomment-1258364648 hi, when component builds inside vitepress, it's fails with error: ``` ✖ rendering pages... build error: file:///Users/path-to-project/docs/.vitepress/.temp/SomeComponent.c214d190.js:4 import { Sortable } from "sortablejs-vue3"; ^^^^^^^^ SyntaxError: Named export 'Sortable'...
I'm using el-table for rendering table. But whenever I add Sortable component in table, it will be disappeared. Any guys can help me? Thanks.
I have trouble getting the new array list. here is my code ``` {{ index }} - {{ element.name }} const elements = [ { id: "1", name: "one" },...
First of all, great work on this library. I was wondering, since components utilizing can now accept generic type parameters via the generic attribute, are there any plans to incorporate...
Hi! Im not very familiar with sortablejs ```ts const baseTasks : Array = [ {id: '1'}, {id: '2'}, {id: '3'} ] const taskList : Ref = ref([]); ``` Im using...
I am using vscode 1.78.2 together with vue 3.2.47 and latest vite. I installed latest sortablejs-vue3 (1.2.9) as per instructions and am seeing error below. I do see node_modules/sortablejs-vue3/dist/src/components/Sortable.vue.d.ts and...
Thanks for your great package, I have encountered a difficulty when trying to use the TransitionGroup. It seems that there's a compatibility issue or perhaps I might be missing something.