Data-driven directed acyclic graph (DAG) visual builder for Vue.js
npm install --save vue-dag
or
yarn add vue-dag
Import and register the component
import VueDag from 'vue-dag';
components: {
VueDag
}
Use it in templates
<vue-dag v-model="graphData"></vue-dag>
The component does not include any CSS. You'll need to import it separately:
import 'vue-dag/dist/vue-dag.css';
Alternatively, you can import the SCSS version and overrite variables and styles
@import 'vue-dag/src/scss/vue-dag.scss';
Full documentation: https://vue-dag.netlify.com/
yarn install
yarn run serve
yarn run lint
yarn run test:unit
yarn run build:library