Replies: 3 comments
-
I never used Nuxt 3 |
Beta Was this translation helpful? Give feedback.
-
Use shallowRef instead of ref to create the canvas. // vue3
import { shallowRef, ref } from 'vue';
const canvasRef = shallowRef(null);
// const canvasRef = ref(null); If it's Vue 2, you need to create a global variable instead of binding it in the data |
Beta Was this translation helpful? Give feedback.
-
ty @zhe-he |
Beta Was this translation helpful? Give feedback.
-
I integrated Fabric with Nuxt 3 in my app and there is no way I can:
For example, to edit text in IText or Textbox I need to do something like this
I tried with v5 and the behavior is the same. I tried with plain HTML and it works. My app is SSR = false so, I don't run into server vs client issues.
Have you seen this behavior before ?
Beta Was this translation helpful? Give feedback.
All reactions