91 lines
2.2 KiB
Markdown
91 lines
2.2 KiB
Markdown
# Vue Flow 🌊
|
|
|
|
[](https://vue-flow.vercel.app/)
|
|

|
|
[](https://david-dm.org/bcakmakoglu/vue-flow)
|
|
[](https://david-dm.org/bcakmakoglu/vue-flow?type=dev)
|
|

|
|

|
|

|
|
|
|
__A customizable Vue3 Flowchart.__
|
|
|
|
Check the [docs](https://vue-flow.vercel.app/docs) and [examples](https://vue-flow.vercel.app/examples) to get started.
|
|
|
|
## Features
|
|
|
|
- 👶 Easy to use: Seamless zooming & panning behaviour and single and multi-selections of
|
|
elements
|
|
|
|
- 🎨 Customizable: Different and edge types and support for custom nodes with multiple handles and custom edges
|
|
|
|
- 🚀 Fast rendering: Only nodes that have changed are re-rendered and only those that are in the viewport are displayed (optionally)
|
|
|
|
- 🧲 Utils: Snap-to-grid and graph helper functions
|
|
|
|
- 📦 Additional Components:
|
|
|
|
- 🖼 Background
|
|
|
|
- 🧭 Minimap
|
|
|
|
- 🕹 Controls
|
|
|
|
- 🦾 Fully written in TypeScript
|
|
|
|
## Table of Contents
|
|
|
|
* [🛠 Setup](#-setup)
|
|
|
|
* [🎮 Quickstart](#-quickstart)
|
|
|
|
* [🧪 Development](#-development)
|
|
|
|
## 🛠 Setup
|
|
|
|
```bash
|
|
$ npm i @braks/vue-flow
|
|
# or
|
|
$ yarn add @braks/vue-flow
|
|
```
|
|
|
|
## 🎮 Quickstart
|
|
|
|
```vue
|
|
|
|
<template>
|
|
<Flow :elements="elements"></Flow>
|
|
</template>
|
|
<script setup>
|
|
import { Flow, Elements } from '@braks/vue-flow'
|
|
|
|
const elements = ref < Elements > ([
|
|
{
|
|
id: '1',
|
|
data: {
|
|
label: 'This is a <strong>default node</strong>',
|
|
},
|
|
position: { x: 100, y: 100 },
|
|
},
|
|
])
|
|
</script>
|
|
```
|
|
|
|
### ▸ Vue 2
|
|
|
|
**_This library doesn't work with Vue2._**
|
|
|
|
## 🧪 Development
|
|
|
|
```bash
|
|
# start (dev)
|
|
$ yarn dev
|
|
|
|
# build dist
|
|
$ yarn build
|
|
```
|
|
|
|
## Credit
|
|
|
|
Thanks to [webkid](https://webkid.io/) for creating React Flow! Without their work this would've been impossible for me.
|