jerosoler / Drawflow

Simple flow library 🖥️🖱️
https://jerosoler.github.io/Drawflow/
MIT License
4.76k stars 739 forks source link

How to do delete node in vuejs3 with this library? #631

Closed i-iktear closed 1 year ago

jerosoler commented 1 year ago

The same as without vue.

With the keyboard with the "delete" key or with the second mouse button.

Or using the "removeNodeId(id)" method.

example:

editor.removeNodeId('node-1');
i-iktear commented 1 year ago

Thanks a lot. working now