jerosoler / Drawflow

Simple flow library 🖥️🖱️
https://jerosoler.github.io/Drawflow/
MIT License
4.78k stars 741 forks source link

Vue3 and TS implementation example #653

Closed theJavaWolf closed 1 year ago

theJavaWolf commented 1 year ago

Hello, I have been trying to implement your example from https://github.com/jerosoler/Drawflow/issues/100 .

I get the following error: image

Has there been any breaking changes since that issue? If yes could you please upload an updated version of the simple example from https://github.com/jerosoler/Drawflow/issues/100 please?

jerosoler commented 1 year ago

Hello,

The problem I see is that you are using "script setup" with an export, remove the word setup.

According to what marks the error.

You can see a complete example with vue3. Demo: https://jerosoler.github.io/drawflow-vue3-example/ Repo: https://github.com/jerosoler/drawflow-vue3-example

jero

theJavaWolf commented 1 year ago

Thank you very much!