You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Vue Flow will use `<VueFlow :connection-mode="ConnectionMode.Loose" />` which allows you to connect edges to any handle.
153
+
That means connections between a `source` and another `source` type `<Handle>` are allowed.
154
+
155
+
If you want to restrict connections to only be made between `source` and `target` type handles, you can set the `connection-mode` prop to `ConnectionMode.Strict`.
156
+
157
+
```vue
158
+
<script setup>
159
+
import { ConnectionMode, VueFlow } from '@vue-flow/core'
0 commit comments