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: 1 comment
-
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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