examples: add quasar example

This commit is contained in:
bcakmakoglu
2022-06-03 19:32:46 +02:00
committed by Braks
parent 8dd7c79700
commit 330d6d7eac
87 changed files with 2290 additions and 166 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { VueFlow, useVueFlow } from '../../packages/vue-flow'
import { VueFlow, useVueFlow } from '@braks/vue-flow'
import { getElements } from './utils'
const { nodes, edges } = getElements(10, 10)
+1 -1
View File
@@ -1,4 +1,4 @@
import type { Edge, Node } from '../../packages/vue-flow'
import type { Edge, Node } from '@braks/vue-flow'
export function getElements(xElements = 10, yElements = 10) {
const initialNodes: Node[] = []