37 lines
1.2 KiB
Vue
37 lines
1.2 KiB
Vue
<script setup>
|
|
import { Background, VueFlow, isNode } from '@braks/vue-flow'
|
|
import { ref } from 'vue'
|
|
|
|
const elements = ref([
|
|
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
|
{ id: '2', label: 'Node 2', position: { x: 100, y: 100 }, class: 'light' },
|
|
{ id: '3', label: 'Node 3', position: { x: 400, y: 100 }, class: 'light' },
|
|
{ id: '4', label: 'Node 4', position: { x: 400, y: 200 }, class: 'light' },
|
|
{ id: 'e1-2', source: '1', target: '2', animated: true },
|
|
{ id: 'e1-3', source: '1', target: '3' },
|
|
])
|
|
|
|
const toggleClass = () => elements.value.forEach((el) => (el.class = el.class === 'light' ? 'dark' : 'light'))
|
|
|
|
const updatePos = () =>
|
|
elements.value.forEach((el) => {
|
|
if (isNode(el)) {
|
|
el.position = {
|
|
x: Math.random() * 400,
|
|
y: Math.random() * 400,
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VueFlow v-model="elements" :fit-view-on-init="true">
|
|
<Background />
|
|
|
|
<div style="position: absolute; right: 10px; top: 10px; z-index: 4">
|
|
<button style="margin-right: 5px" @click="updatePos">update positions</button>
|
|
<button style="margin-right: 5px" @click="toggleClass">toggle class</button>
|
|
</div>
|
|
</VueFlow>
|
|
</template>
|