Replies: 2 comments 5 replies
-
I guess I can extend BaseEdgeProps and problem solved...
|
Beta Was this translation helpful? Give feedback.
0 replies
-
The reason why |
Beta Was this translation helpful? Give feedback.
5 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
(using "@vue-flow/core": "^1.18.0")
export interface BaseEdgeProps extends EdgeLabelOptions { labelX?: number labelY?: number path: string label?: any markerStart?: string markerEnd?: string interactionWidth?: number }
I didn't look close enough to the source code but any reason why style is not added to BaseEdgeProps?
style?: any
Trying to create custom edge with some style
<BaseEdge :path="path[0]" :style="style"/>
But, getting such error (still functions but trying to avoid such vue-tsc error console)
By the way, thanks bunch for providing such a great component. I hope this great work continues!
Beta Was this translation helpful? Give feedback.
All reactions