[Vuejs]-Using image in docx in Vue

0👍

I had the same problem this week. In my Vue frontend I used the File object of the uploaded image by the user. For "stored" images inside my project I used binary version of the image: Uint8Array.from(atob(<<base64>>), c => c.charCodeAt(0))

Leave a comment