-
I'm trying to use vue-flow component in my application which is using electron-builder. I always get error: error in ./node_modules/@vue-flow/core/dist/vue-flow-core.mjs Module parse failed: Unexpected token (78:82)
| let y = null; I can't solve this problem. Give me an advice, please... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
Could you try updating to |
Beta Was this translation helpful? Give feedback.
I fixed the problem. I got the solution from Internet. In my vue.config.js file I added the line:
transpileDependencies: ['@vue-flow/core']
The error disappeared and it seems that the component is working.