Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@vue-flow/pathfinding-edge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Vue Flow Pathfinding Edge 🧲
Custom edge that avoids crossing nodes
🛠 Setup
# install
$ yarn add @vue-flow/core-pathfinding-edge
# or
$ npm i --save @vue-flow/core-pathfinding-edge
🎮 Quickstart
<script setup>
import { VueFlow, useVueFlow } from '@vue-flow/core'
import { PathFindingEdge } from '@vue-flow/core-pathfinding-edge'
import initialElements from './initial-elements'
const elements = ref(initialElements)
// create a new context so we can fetch nodes
const { getNodes } = useVueFlow()
</script>
<template>
<div style="height: 300px">
<VueFlow v-model="elements">
<template #edge-pathfinding="props">
<PathFindingEdge v-bind="props" :nodes="getNodes" />
</template>
</VueFlow>
</div>
</template>
// initial-elements.js
export default [
{
id: '1',
label: 'Node 1',
position: {
x: 430,
y: 0,
},
},
{
id: '2',
label: 'Node 2',
position: {
x: 230,
y: 90,
},
},
{
id: 'e12',
source: '1',
target: '2',
label: 'Smart Edge',
style: { stroke: 'red' },
// assign pathfinding edge type
type: 'pathfinding'
},
]