Node Toolbar ​
This is a toolbar component for Vue Flow. It can be used to create a floating Toolbar next to your nodes. You can either display the Toolbar by setting the visibility prop or automatically showing the Toolbar on selected nodes.
Installation ​
bash
yarn add @vue-flow/node-toolbar
# or
npm install @vue-flow/node-toolbarUsage ​
vue
<script setup>
import { VueFlow } from '@vue-flow/core'
import initialNodes from './initialNodes'
// some nodes and edges
const nodes = ref(initialNodes)
</script>
<template>
  <VueFlow :nodes="nodes">
    <template #node-custom="nodeProps">
      <CustomNode :data="nodeProps.data" />
    </template>
  </VueFlow>
</template>vue
<script lang="ts" setup>
import { Handle, Position } from '@vue-flow/core'
import { NodeToolbar } from '@vue-flow/node-toolbar'
interface NodeData {
  toolbarVisible: boolean
  toolbarPosition: Position
}
interface Props {
  data: NodeData
  label: string
}
defineProps<Props>()
</script>
<template>
  <NodeToolbar :is-visible="data.toolbarVisible" :position="data.toolbarPosition">
    <button>delete</button>
    <button>copy</button>
    <button>expand</button>
  </NodeToolbar>
  <Handle type="target" :position="Position.Left" />
  <Handle type="source" :position="Position.Right" />
</template>Props ​
| Name | Definition | Type | Optional | Default | 
|---|---|---|---|---|
| nodeId | Node(s) the toolbar is supposed to be attached to | string array | true | NodeId from context | 
| isVisible | Force visibility of toolbar | boolean | true | Selected node | 
| position | Toolbar position (top, left, right, bottom) | Position | true | Top | 
| offset | Offset of toolbar position | number | true | 10 | 
Slots ​
| Name | Definition | 
|---|---|
| default | Default toolbar slot for any content | 
