A beautiful flowchart maker, made with vuejs towards status machine and process automation. Have fun :D.
yarn add vue-drag-and-flow
npm install vue-drag-and-flow -s
import Vue from "vue"
import { library, config } from '@fortawesome/fontawesome-svg-core'
import { FontAwesomeIcon, FontAwesomeLayers, FontAwesomeLayersText } from '@fortawesome/vue-fontawesome'
import { fas } from '@fortawesome/free-solid-svg-icons'
import { fab } from '@fortawesome/free-brands-svg-icons'
Vue.component('font-awesome-icon', FontAwesomeIcon)
Vue.component('font-awesome-layers', FontAwesomeLayers)
Vue.component('font-awesome-layers-text', FontAwesomeLayersText)
config.autoAddCss = false
library.add(fas)
library.add(fab)
<template>
<div style=" display: flex;">
</div>
</template>
<script>
import { DragArea, NodeClone } from 'vue-drag-and-flow'
export default {
components: {
DragArea,
NodeClone
},
data () {
return {
objects: []
}
}
}
</script>
- Flowchart maker
- Organize font
- Using vuex state
- Templates and slots
- Color set
- Feedbacks on select items / rows
- Running state machine
- Create other demos
- Resize two options node
- two or more options like switch case
yarn install
yarn serve
yarn build-bundle
yarn build
yarn lint
Copyright (c) 2020-present Bruno Meurer