Skip to content

Is is possible to use vue-flow component in non-typescript Vue3 project? #39

Answered by bcakmakoglu
eminaigoritma asked this question in Q&A
Discussion options

You must be logged in to vote

Hi!

Sure, you can use Vue Flow without TypeScript.
If you're using webpack or vite you should be good with ES-6 syntax (i.e. import ... from '@braks/vue-flow' instead of const ... = require('@braks/vue-flow'))

<script setup>
// ES-6
import { VueFlow } from '@braks/vue-flow'

const elements = ref([
  { id: '1', type: 'input', data: { label: 'Node 1' }, position: { x: 250, y: 5 } },
  { id: '2', data: { label: 'Node 2' }, position: { x: 100, y: 100 } },
  { id: '3', data: { label: 'Node 3' }, position: { x: 400, y: 100 } },
  { id: '4', data: { label: 'Node 4' }, position: { x: 400, y: 200 } },
  { id: 'e1-2', source: '1', target: '2', animated: true },
  { id: 'e1-3', source: '1', target: '3'

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by bcakmakoglu
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #35 on March 16, 2022 15:11.