feat: implement workspaces

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent cc96739c38
commit cd817b7f53
153 changed files with 8970 additions and 1191 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { getElements } from './utils'
import { VueFlow, FlowInstance } from '~/index'
import { VueFlow, FlowInstance } from '@braks/vue-flow'
const instance = ref<FlowInstance>()
const onLoad = (flowInstance: FlowInstance) => {
+1 -1
View File
@@ -1,4 +1,4 @@
import { Edge, Node } from '~/index'
import { Edge, Node } from '@braks/vue-flow'
export function getElements(xElements = 10, yElements = 10) {
const initialNodes: Node[] = []