Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexandrebonaventure/vue-flowchart

Port of React Diagrams (https://github.com/projectstorm/react-diagrams)
https://github.com/alexandrebonaventure/vue-flowchart

Last synced: about 2 months ago
JSON representation

Port of React Diagrams (https://github.com/projectstorm/react-diagrams)

Awesome Lists containing this project

README

        

# vue-flowchart
This lib is under heavy development. It is not production-ready and API could change dramatically. Feel free to use it anyway.
# Usage
Soon

### Graph Data
```
{
links:[
{
id :String,
source :String, // a node ID
sourcePort :String,
target: node3,
targetPort: 'in'
},
...
],
nodes: [
{
id :String,
type: :String, // default: 'default'
data: {
name: "Caption",
outVariables: ['out']
},
x :Number, // in px
y :Number, // in px
},
],
}
```

# Example

# TO-DO

# Contributions
are welcome :)