Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/alexandrebonaventure/vue-flowchart
- Owner: AlexandreBonaventure
- License: mit
- Created: 2017-01-20T23:27:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T14:00:21.000Z (over 7 years ago)
- Last Synced: 2024-11-07T12:51:15.588Z (about 2 months ago)
- Language: Vue
- Size: 420 KB
- Stars: 36
- Watchers: 11
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 :)