Files
Braks d71de0a92d chore(docs): update example styles (#1469)
* chore(docs): update basic example styles

* chore(docs): update confirm delete example styles

* chore(docs): update dnd example styles

* chore(docs): update hidden example

* chore(docs): update update node example

* chore(docs): update node toolbar example styles

* chore(docs): update transition example styles

* chore(docs): cleanup basic example els

* chore(docs): cleanup examples
2024-06-10 23:51:47 +02:00

96 lines
2.2 KiB
Vue

<script setup>
import { ref } from 'vue'
import { VueFlow } from '@vue-flow/core'
import { Background } from '@vue-flow/background'
import { Controls } from '@vue-flow/controls'
import { MiniMap } from '@vue-flow/minimap'
const nodes = ref([
{
id: '1',
type: 'input',
data: { label: 'node' },
position: { x: 250, y: 0 },
},
{
id: '2',
data: { label: 'parent node' },
position: { x: 100, y: 100 },
style: { backgroundColor: 'rgba(16, 185, 129, 0.5)', width: '200px', height: '200px' },
},
{
id: '2a',
data: { label: 'child node' },
position: { x: 10, y: 50 },
parentNode: '2',
},
{
id: '4',
data: { label: 'parent node' },
position: { x: 320, y: 175 },
style: { backgroundColor: 'rgba(16, 185, 129, 0.5)', width: '400px', height: '300px' },
},
{
id: '4a',
data: { label: 'child node' },
position: { x: 15, y: 65 },
extent: 'parent',
parentNode: '4',
},
{
id: '4b',
data: { label: 'nested parent node' },
position: { x: 15, y: 120 },
style: { backgroundColor: 'rgba(139, 92, 246, 0.5)', height: '150px', width: '270px' },
parentNode: '4',
},
{
id: '4b1',
data: { label: 'nested child node' },
position: { x: 20, y: 40 },
parentNode: '4b',
},
{
id: '4b2',
data: { label: 'nested child node' },
position: { x: 100, y: 100 },
parentNode: '4b',
},
{
id: '4c',
data: { label: 'child node' },
position: { x: 200, y: 65 },
parentNode: '4',
},
{
id: '999',
type: 'input',
data: { label: 'Drag me to extend area!' },
position: { x: 20, y: 100 },
class: 'light',
expandParent: true,
parentNode: '2',
},
])
const edges = ref([
{ id: 'e1-2', source: '1', target: '2' },
{ id: 'e1-4', source: '1', target: '4' },
{ id: 'e1-4c', source: '1', target: '4c' },
{ id: 'e2a-4a', source: '2a', target: '4a' },
{ id: 'e4a-4b1', source: '4a', target: '4b1' },
{ id: 'e4a-4b2', source: '4a', target: '4b2' },
{ id: 'e4b1-4b2', source: '4b1', target: '4b2' },
])
</script>
<template>
<VueFlow :nodes="nodes" :edges="edges" fit-view-on-init elevate-edges-on-select>
<MiniMap />
<Controls />
<Background />
</VueFlow>
</template>