We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5e12f commit 2ac9c69Copy full SHA for 2ac9c69
src/core/renderHelper.js
@@ -18,7 +18,7 @@ function computeNodes({ $slots, realList, getKey }) {
18
}
19
const defaultNodes = normalizedList.flatMap((element, index) =>
20
item({ element, index }).map(node => {
21
- node.key = getKey(element);
+ node.key = getKey(element, index);
22
node.props = { ...(node.props || {}), "data-draggable": true };
23
return node;
24
})
0 commit comments