Interface Vue3SurfaceViewOptions

Options for the view in the Vue3 surface component. Maps node/group/port/edge types to Component and behaviour.

interface Vue3SurfaceViewOptions {
    edges?: ViewOptionsEntry<ViewEdgeOptions>;
    groups?: ViewOptionsEntry<Vue3GroupOptions>;
    nodes?: ViewOptionsEntry<Vue3NodeOptions>;
    ports?: ViewOptionsEntry<Vue3PortOptions>;
}

Properties

edges?: ViewOptionsEntry<ViewEdgeOptions>

Optional edge mappings.

groups?: ViewOptionsEntry<Vue3GroupOptions>

Optional group mappings

nodes?: ViewOptionsEntry<Vue3NodeOptions>

Optional node mappings

ports?: ViewOptionsEntry<Vue3PortOptions>

Optional port mappings. Because of Vue 3's reactivity, separate port mappings are a little rare in JsPlumb React, but they are supported if you need them.

Version :