Files
vue-flow/examples/EdgeTypes/EdgeTypesExample.vue
2021-10-20 22:39:54 +02:00

31 lines
964 B
Vue

<script lang="ts" setup>
/**
* Example for checking the different edge types and source and target positions
*/
import { getElements } from './utils'
import Flow, { removeElements, addEdge, MiniMap, Controls, Background, OnLoadParams, Connection, Edge, Elements } from '~/index'
const onLoad = (reactFlowInstance: OnLoadParams) => {
reactFlowInstance.fitView()
console.log(reactFlowInstance.getElements())
}
const elements = ref<Elements>(getElements())
const onElementsRemove = (elementsToRemove: Elements) => (elements.value = removeElements(elementsToRemove, elements.value))
const onConnect = (params: Connection | Edge) => (elements.value = addEdge(params, elements.value))
</script>
<template>
<Flow
:elements="elements"
:only-render-visible-elements="true"
:min-zoom="0.2"
@load="onLoad"
@elements-remove="onElementsRemove"
@connect="onConnect"
>
<MiniMap />
<Controls />
<Background />
</Flow>
</template>