Vue 2 dataflow graph editor
npm install @krthr/vue-dataflow-editor
> Based on vue-blocks. A @ghostiam's project.
```
npm i @krthr/vue-dataflow-editor
Import the lib on app.js
`js
// app.js or main.js, or the main file
// where you create the vue app
import Vue from "vue";
// other imports
import "@krthr/vue-dataflow-editor";
import "@krthr/vue-dataflow-editor/dist/vue-dataflow-editor.css";
const app = new Vue({
/ ... /
});
`
`html`
:blocks-content="[]"
:scene.sync="{}"
/>
`html
:blocks-content="[]"
:scene.sync="{}"
class="container"
/>
``