fix(edges): use correct functions for center/path in simple bezier edge

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent 2b2aad8cdc
commit 3acb43d000
3 changed files with 6 additions and 7 deletions
+3 -3
View File
@@ -68,9 +68,6 @@ const { onPaneReady } = useVueFlow({
snapToGrid: true,
snapGrid,
defaultZoom: 1.5,
nodeTypes: {
selectorNode: markRaw(ColorSelectorNode),
},
})
onPaneReady((i) => {
i.fitView()
@@ -79,6 +76,9 @@ onPaneReady((i) => {
</script>
<template>
<VueFlow v-model="elements" :style="{ backgroundColor: bgColor }">
<template #node-selectorNode="props">
<ColorSelectorNode v-bind="props" />
</template>
<MiniMap :node-stroke-color="nodeStroke" :node-color="nodeColor" />
<Controls />
</VueFlow>