I am a beginner and I would like to ask how to trigger node click events for custom nodes. Is there an example? I have looked at the document but couldn't find it #1363
Unanswered
yang1366788
asked this question in
Q&A
Replies: 2 comments 1 reply
-
You trigger click events by clicking a node 😄 I'm guessing you want to know how to listen to a click event? <VueFlow @node-click="handleNodeClick"> or const { onNodeClick } = useVueFlow()
onNodeClick((params) => {
// ...
}) |
Beta Was this translation helpful? Give feedback.
0 replies
-
How does this work with dblclick? ... I've been trying to use the @node-dblClick event handle, but it does not trigger the associated method. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am a beginner and I would like to ask how to trigger node click events for custom nodes. Is there an example? I have looked at the document but couldn't find it
Beta Was this translation helpful? Give feedback.
All reactions