fix: missing props on Draggable
Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -61,7 +61,13 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="vue-flow__nodesselection" :style="{ transform }">
|
<div class="vue-flow__nodesselection" :style="{ transform }">
|
||||||
<Draggable @start="onStart" @move="onDrag" @stop="onStop">
|
<Draggable
|
||||||
|
:grid="store.snapToGrid ? store.snapGrid : undefined"
|
||||||
|
:enable-user-select-hack="false"
|
||||||
|
@start="onStart"
|
||||||
|
@move="onDrag"
|
||||||
|
@stop="onStop"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
:key="`vue-flow-nodesselection-rect-${store.$id}`"
|
:key="`vue-flow-nodesselection-rect-${store.$id}`"
|
||||||
class="vue-flow__nodesselection-rect"
|
class="vue-flow__nodesselection-rect"
|
||||||
|
|||||||
Reference in New Issue
Block a user