Skip to content
Snippets Groups Projects
Commit d445fda3 authored by Julian's avatar Julian
Browse files

Supply key to custom blocking method

parent 4defa08b
No related branches found
No related tags found
1 merge request!2Resolve "Implement basic functionality"
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
:h="item.h" :h="item.h"
> >
</DragContainer> </DragContainer>
<slot></slot>
</div> </div>
</template> </template>
...@@ -56,7 +57,7 @@ export default { ...@@ -56,7 +57,7 @@ export default {
} }
} }
} }
if (this.posValidation) return this.posValidation(x, y); if (this.posValidation) return this.posValidation(x, y, key);
return true; return true;
}, },
handleDragOver(event) { handleDragOver(event) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment