14 lines
310 B
Vue
14 lines
310 B
Vue
<script lang="ts" setup>
|
|
import { VueFlow } from '@braks/vue-flow'
|
|
import { ref } from 'vue'
|
|
import Controls from './Controls.vue'
|
|
|
|
const elements = ref([{ id: '1', label: 'Node 1', position: { x: 100, y: 100 } }])
|
|
</script>
|
|
|
|
<template>
|
|
<VueFlow v-model="elements">
|
|
<Controls />
|
|
</VueFlow>
|
|
</template>
|