Files
vue-flow/.changeset/cuddly-flies-change.md
T
2024-02-05 07:51:12 +01:00

20 lines
457 B
Markdown

---
"@vue-flow/core": minor
---
Add `updateNode` action
## 🧙 Example
```ts
const { updateNode } = useVueFlow()
updateNode('1', { position: { x: 100, y: 100 } })
// or using a function to update the node
updateNode('1', (node) => ({ ...node, position: { x: 100, y: 100 } }))
// passing options - `replace` will replace the node instead of merging it
updateNode('1', { id: '1', label: 'Node 1', position: { x: 100, y: 100 } }, { replace: true })
```